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 characters
| (function(window){ | |
| api = { | |
| clear: clear, | |
| add: add | |
| } | |
| function clear(){ | |
| } |
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 characters
| function Awesome(){ | |
| var property1 = 'xxx'; | |
| var property2 = 'yyy' | |
| }; | |
| Awesome.prototype.clear = function(){ | |
| this.property1 = ''; | |
| this.property2 = ''; | |
| } |
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 characters
| var Awesome = (function(){ | |
| var public = { | |
| test: test, | |
| test2: test2, | |
| clear: clear | |
| }; | |
| function test(){ | |
| } |
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 characters
| /* ============================================================================= | |
| CSS Declarations | |
| ========================================================================== */ | |
| /* ==|== The Standard Way =================================================== */ | |
| .foo::before { | |
| /* ...css rules... */ | |
| } |
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 characters
| ----------------------------------------------------------------------------- | |
| -- JSON4Lua: JSON encoding / decoding support for the Lua language. | |
| -- json Module. | |
| -- Author: Craig Mason-Jones | |
| -- Homepage: http://json.luaforge.net/ | |
| -- Version: 0.9.40 | |
| -- This module is released under the MIT License (MIT). | |
| -- Please see LICENCE.txt for details. | |
| -- | |
| -- USAGE: |
NewerOlder