Created
August 25, 2010 17:55
-
-
Save qoelet/549973 to your computer and use it in GitHub Desktop.
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 koolcharts = {}; | |
// maybe you have a buncha functions | |
koolcharts.fn = {}; | |
// let's add a draw function | |
koolcharts.fn.draw = function() { | |
alert("I'm too young to draw"); | |
}; | |
// run it | |
koolcharts.fn.draw(); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment