Slide 68
Slide 68 text
THE MODEL
Clock.prototype.model = function (model_changes) {
!
// First, optionally filter the fake changes out.
!
// Second, asyncly send the changes to server;
// and update model/view by the response.
!
// Finally, update the changes into this._model.
!
this.view(view_changes);
};
18