| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- App.View = (function(lng, App, undefined) {
- lng.View.Template.create('pending-tmp',
- '<li id="{{id}}">\
- <a href="#">\
- <span class="icon check"></span>\
- <strong>{{name}}</strong>\
- <small>{{description}}</small>\
- </a>\
- </li>'
- );
- lng.View.Template.create('list-tmp',
- '<li id="{{id}}">\
- <a href="#">\
- <span class="icon folder"></span>\
- <strong>{{name}}</strong>\
- <small>{{description}}</small>\
- </a>\
- </li>'
- );
- var todo = function(id) {
- lng.Data.Sql.select('todo', {id:id}, function(result){
- if (result.length > 0) {
- var data = result[0];
- lng.Data.Cache.set('current_todo', data);
- $('#txtEditName').val(data.name);
- $('#txtEditDescription').val(data.description);
- $('#txtEditName').val(data.name);
- lng.Router.section('view');
- }
- });
- };
- var returnToMain = function(message, icon) {
- lng.Sugar.Growl.show(message, icon, true);
- App.Data.refresh();
- setTimeout(function() {
- lng.Router.back();
- lng.Sugar.Growl.hide();
- }, 500);
- };
- return{
- todo: todo,
- returnToMain: returnToMain
- }
- })(LUNGO, App);
|