Created
March 8, 2015 16:14
-
-
Save stimms/3dc0d8281ff09ee29d76 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 BugTracker = BugTracker || {}; | |
BugTracker.Controls = BugTracker.Controls || {}; | |
BugTracker.Controls.Table = {}; | |
BugTracker.Controls.Table.prototype.Init = funciton(container){ | |
//do stuff | |
} | |
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 BugTracker = BugTracker || {}; | |
BugTracker.SomePage = BugTracker.SomePage || {}; | |
BugTracker.SomePage = function(){ | |
//constructor | |
var table = new BugTracker.Controls.Table(document.querySelector("#container")); | |
} | |
var page = new BugTracker.SomePage(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment