1
0
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:
Kushagra Gour
2016-11-16 13:14:51 +05:30
parent 05894131a5
commit e0a5335e5d
3 changed files with 4 additions and 0 deletions

View File

@ -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://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="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>
</ul>
</p>

View File

@ -54,6 +54,7 @@
background-color: red;
box-shadow: 0px 0px 3px 0px rgba(4, 4, 4, 0.4);
background-color: #424242;
background-color: crimson;
background-image: linear-gradient(top, #424242, #212121);
}
/*

View File

@ -56,6 +56,7 @@
* @param {ASTBody} Body of an AST generated by esprima or any ES compliant AST
*/
function addInfiniteLoopProtection(astBody) {
if (!astBody) return;
if (!Array.isArray(astBody)) {
addInfiniteLoopProtection(astBody.body);
return;