reordered js

This commit is contained in:
Armen Vartan
2014-12-01 15:22:51 -05:00
parent 363ef9b198
commit cedce54eef
47 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,20 @@
// all jquery dom actions can only be called inside document ready.
function toDoList(){
}
toDoList.prototype.add = function(todo){
}
toDoList.prototype.complete = function(todo){
}
var myList = new toDoList();
$(document).ready(function(){
})