mirror of
https://github.com/chinchang/web-maker.git
synced 2025-07-14 10:36:19 +02:00
minor fixes.
This commit is contained in:
@ -618,6 +618,8 @@
|
|||||||
<li><a target="_blank" href="https://nathancahill.github.io/Split.js/">Split.js</a> - Nathan Cahill</li>
|
<li><a target="_blank" href="https://nathancahill.github.io/Split.js/">Split.js</a> - Nathan Cahill</li>
|
||||||
<li><a target="_blank" href="https://codemirror.net/">Codemirror</a> - Marijn Haverbeke</li>
|
<li><a target="_blank" href="https://codemirror.net/">Codemirror</a> - Marijn Haverbeke</li>
|
||||||
<li><a target="_blank" href="https://emmet.io/">Emmet</a> - Sergey Chikuyonok</li>
|
<li><a target="_blank" href="https://emmet.io/">Emmet</a> - Sergey Chikuyonok</li>
|
||||||
|
<li><a target="_blank" href="http://esprima.org/">Esprima</a> - Ariya Hidayat</li>
|
||||||
|
<li><a target="_blank" href="https://github.com/estools/escodegen">Escodegen</a> - Mozilla</li>
|
||||||
<li><a target="_blank" href="https://kushagragour.in/lab/web-maker">Web Maker!</a> - whhat!</li>
|
<li><a target="_blank" href="https://kushagragour.in/lab/web-maker">Web Maker!</a> - whhat!</li>
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
background-color: red;
|
background-color: red;
|
||||||
box-shadow: 0px 0px 3px 0px rgba(4, 4, 4, 0.4);
|
box-shadow: 0px 0px 3px 0px rgba(4, 4, 4, 0.4);
|
||||||
background-color: #424242;
|
background-color: #424242;
|
||||||
|
background-color: crimson;
|
||||||
background-image: linear-gradient(top, #424242, #212121);
|
background-image: linear-gradient(top, #424242, #212121);
|
||||||
}
|
}
|
||||||
/*
|
/*
|
||||||
|
@ -56,6 +56,7 @@
|
|||||||
* @param {ASTBody} Body of an AST generated by esprima or any ES compliant AST
|
* @param {ASTBody} Body of an AST generated by esprima or any ES compliant AST
|
||||||
*/
|
*/
|
||||||
function addInfiniteLoopProtection(astBody) {
|
function addInfiniteLoopProtection(astBody) {
|
||||||
|
if (!astBody) return;
|
||||||
if (!Array.isArray(astBody)) {
|
if (!Array.isArray(astBody)) {
|
||||||
addInfiniteLoopProtection(astBody.body);
|
addInfiniteLoopProtection(astBody.body);
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user