files
This commit is contained in:
20
python/7-todo-list/main.js
Normal file
20
python/7-todo-list/main.js
Normal 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(){
|
||||
|
||||
|
||||
})
|
Reference in New Issue
Block a user