Last active
December 11, 2015 23:38
-
-
Save sukima/4678081 to your computer and use it in GitHub Desktop.
Revisions
-
sukima revised this gist
Mar 16, 2015 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -76,6 +76,12 @@ "url": "http://searls.github.io/jasmine-all/jasmine-all-min.js", "group": "Custom Libs", "label": "Jasmine-all" }, { "text": "URI.js", "url": "https://rawgit.com/medialize/URI.js/gh-pages/src/URI.min.js", "group": "Custom Libs", "label": "URI.js" } ] ); -
sukima revised this gist
Jan 17, 2015 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -73,7 +73,7 @@ [ { "text": "Jasmine-all", "url": "http://searls.github.io/jasmine-all/jasmine-all-min.js", "group": "Custom Libs", "label": "Jasmine-all" } -
sukima revised this gist
Jan 15, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,9 @@ (function(settings, libraries) { localStorage.setItem('settings', JSON.stringify(settings)); localStorage.setItem('libraries', JSON.stringify(libraries)); setTimeout(function() { window.location = window.location; // Force refresh }, 0); })( //Settings { -
sukima revised this gist
Jan 15, 2015 . 1 changed file with 78 additions and 30 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,31 +1,79 @@ (function(settings, libraries) { localStorage.setItem('settings', JSON.stringify(settings)); localStorage.setItem('libraries', JSON.stringify(libraries)); window.location = window.location; // Force refresh })( //Settings { "panels": [ "javascript", "console" ], "editor": { "indentWithTabs": false, "indentUnit": 2, "theme": "solarized light", "tabSize": 2, "lineWrapping": true, "lineNumbers": true }, "font": "14", "addons": { "closebrackets": false, "highlight": false, "vim": true, "emacs": false, "trailingspace": true, "fold": false, "sublime": false, "tern": false, "activeline": true, "matchbrackets": true, "matchtags": false }, "includejs": true, "gui": { "toppanel": false }, "jshint": true, "jshintOptions": { "camelcase": true, "curly": true, "eqeqeq": true, "freeze": true, "indent": 2, "newcap": true, "quotmark": "single", "maxdepth": 3, "maxstatements": 15, "maxlen": 80, "eqnull": true, "funcscope": true }, "csshint": false, "csshintOptions": {}, "htmlhint": false, "htmlhintOptions": {}, "coffeescripthint": false, "coffeescripthintOptions": {}, "hintShow": { "console": true, "line": true, "gutter": false }, "focusedPanel": "javascript", "ssl": true, "keys": { "seenWarning": true } }, // Libraries [ { "text": "Jasmine-all", "url": "http://sukima.github.io/jasmine-all/jasmine-all-min.js", "group": "Custom Libs", "label": "Jasmine-all" } ] ); -
sukima revised this gist
Mar 23, 2014 . 1 changed file with 22 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,12 +1,26 @@ // Addons jsbin.settings.addons.closebrackets = false; jsbin.settings.addons.emacs = false; jsbin.settings.addons.fold = true; jsbin.settings.addons.highlight = true; jsbin.settings.addons.trailingspace = true; jsbin.settings.addons.vim = true; // Editor jsbin.settings.editor.autoClearEmptyLines = true; jsbin.settings.editor.indentUnit = 2; jsbin.settings.editor.indentWithTabs = false; jsbin.settings.editor.lineNumbers = true; jsbin.settings.editor.lineWrapping = false; jsbin.settings.editor.matchBrackets = true; jsbin.settings.editor.smartIndent = true; jsbin.settings.editor.tabSize = 2; jsbin.settings.editor.theme = "solarized"; // Panels jsbin.settings.panels = ["javascript", "console"]; // Libraries libraries.clear(); libraries.add({ text: 'Custom Libs', -
sukima revised this gist
Nov 14, 2013 . 1 changed file with 9 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,4 +6,12 @@ jsbin.settings.editor.indentWithTabs = false; jsbin.settings.editor.smartIndent = true; jsbin.settings.editor.lineWrapping = false; jsbin.settings.editor.autoClearEmptyLines = true; jsbin.settings.editor.matchBrackets = true; libraries.clear(); libraries.add({ text: 'Custom Libs', scripts: [ { text: 'Jasmine-all', url: 'http://sukima.github.io/jasmine-all/jasmine-all-min.js' }, { text: 'Q', url: 'https://rawgithub.com/kriskowal/q/v0.9.7/q.js' } ] }); -
sukima revised this gist
Feb 14, 2013 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ jsbin.settings.editor.theme = "solarized"; jsbin.settings.editor.lineNumbers = true; jsbin.settings.editor.indentUnit = 2; jsbin.settings.editor.tabSize = 2; -
sukima created this gist
Jan 30, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ jsbin.settings.editor.theme = "solarized-light"; jsbin.settings.editor.lineNumbers = true; jsbin.settings.editor.indentUnit = 2; jsbin.settings.editor.tabSize = 2; jsbin.settings.editor.indentWithTabs = false; jsbin.settings.editor.smartIndent = true; jsbin.settings.editor.lineWrapping = false; jsbin.settings.editor.autoClearEmptyLines = true; jsbin.settings.editor.matchBrackets = true;