This file contains 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
Show hidden characters
// for the ST3 users who don't have the Default.sublime-theme file (which is actually the default configuration), | |
// the simplest procedure is: | |
// 1- Navigate to Sublime Text -> Preferences -> Browse Packages | |
// 2- Open the User directory | |
// 3- Create a file named Default.sublime-theme with the following content (modify font.size as required): | |
[ | |
{ | |
"class": "sidebar_label", | |
"color": [0, 0, 0], | |
"font.size": 16 |
This file contains 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
/** | |
* Define a method inside of a JavaScript Object. In this instance, the method gets | |
* recreated with each Class Instance. Sometimes desirable, sometimes not. | |
*/ | |
function Wizard () { | |
this.name = "The Wiz"; | |
this.level = 1; | |
this.shoot = function () { | |
alert('Imma Shoot You!'); | |
}; |