1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-27 00:30:09 +02:00
This commit is contained in:
Kushagra Gour
2017-01-16 04:35:53 +05:30
parent 602c3fb30a
commit f2694a9f4a
3 changed files with 4 additions and 2 deletions

View File

@@ -364,7 +364,7 @@ c5.953,0,10.779,4.826,10.779,10.779v64.674H503.916z"></path>
<script src="lib/inlet.min.js"></script> <script src="lib/inlet.min.js"></script>
<script src="lib/esprima.js"></script> <script src="lib/esprima.js"></script>
<script src="lib/escodegen.browser.min.js"></script> <script src="lib/escodegen.browser.min.js"></script>
<script src="https://togetherjs.com/togetherjs.js"></script>
<script src="utils.js"></script> <script src="utils.js"></script>
<script src="analytics.js"></script> <script src="analytics.js"></script>
<script src="deferred.js"></script> <script src="deferred.js"></script>

View File

@@ -8,7 +8,7 @@
"storage", "storage",
"tabs" "tabs"
], ],
"content_security_policy": "script-src 'self' https://www.google-analytics.com 'unsafe-eval'; object-src 'self'", "content_security_policy": "script-src 'self' https://togetherjs.com https://www.google-analytics.com 'unsafe-eval'; object-src 'self'",
"options_ui": { "options_ui": {
"page": "options.html", "page": "options.html",
"chrome_style": true "chrome_style": true

View File

@@ -528,6 +528,7 @@ settingsBtn, onboardModal, notificationsBtn */
} catch (e) { } catch (e) {
showErrors('js', [ { lineNumber: e.lineNumber - 1, message: e.description } ]); showErrors('js', [ { lineNumber: e.lineNumber - 1, message: e.description } ]);
} finally { } finally {
console.log(code)
if (shouldPreventInfiniteLoops !== false) { if (shouldPreventInfiniteLoops !== false) {
// utils.addInfiniteLoopProtection(ast); // utils.addInfiniteLoopProtection(ast);
} }
@@ -992,6 +993,7 @@ settingsBtn, onboardModal, notificationsBtn */
hasSeenNotifications = false; hasSeenNotifications = false;
} }
}); });
TowTruck(this);
requestAnimationFrame(compileNodes); requestAnimationFrame(compileNodes);
} }