Changeset 57
- Timestamp:
- 11/01/08 16:34:35 (2 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
code/branches/sandboxes/teemow/src/jamal/libs/model.js
r54 r57 121 121 * @cat model 122 122 */ 123 find: function(action, callback) {123 get: function(action, callback) { 124 124 var model = this; 125 125 var settings = this.settings(); … … 134 134 135 135 settings.callback = function(result) { 136 model.afterFind(result); 136 result = model.afterFind(result); 137 callback(result); 137 138 }; 138 139
