diff options
| -rw-r--r-- | js/help.js | 3 | ||||
| -rw-r--r-- | shader-combo.html | 6 |
2 files changed, 4 insertions, 5 deletions
@@ -7,7 +7,8 @@ help.init = function(){ help.bind = function(){ $(window).on("scroll DOMMouseScroll mousewheel", function(){ scrolling = true }) - $("#help,#instructions .close").click(function(){ $("#instructions").toggle() }) + $("#help").click(function(){ $("#instructions").toggle() ;console.log("zZ") }) + $("#instructions .close").click(function(){ $("#instructions").toggle() ;console.log("zZ") }) $("#instructions").draggable({ start: drag_start, stop: drag_stop diff --git a/shader-combo.html b/shader-combo.html index 5b218a6..ba62657 100644 --- a/shader-combo.html +++ b/shader-combo.html @@ -232,12 +232,10 @@ function init(){ cc.canvas.height = h }) - frame_editor.init() - help.init() load() - - user.init() help.init() + user.init() + frame_editor.init() shader_gallery.init() gallery.init(choose) |
