cpsing the web-world a little more so I can call event handler on-start and on-stop too
This commit is contained in:
parent
a88e4192e3
commit
da295687e5
|
@ -1209,11 +1209,12 @@
|
|||
});
|
||||
};
|
||||
|
||||
startEventHandlers = function() {
|
||||
startEventHandlers = function(k) {
|
||||
var i;
|
||||
for (i = 0; i < eventHandlers.length; i++) {
|
||||
startEventHandler(eventHandlers[i]);
|
||||
}
|
||||
k();
|
||||
};
|
||||
|
||||
stopEventHandlers = function() {
|
||||
|
@ -1321,14 +1322,14 @@
|
|||
for (i = 0; i < actions.length; i++) {
|
||||
actions[i](view);
|
||||
}
|
||||
success();
|
||||
} else {
|
||||
view.top = arrayTreeToDomNode(newMockView.getCursor().top().node);
|
||||
view.initialRender(top);
|
||||
eventHandlers = newMockView.eventHandlers.slice(0);
|
||||
view.eventHandlers = eventHandlers;
|
||||
startEventHandlers();
|
||||
startEventHandlers(success);
|
||||
}
|
||||
success();
|
||||
},
|
||||
function(err) {
|
||||
failure(err);
|
||||
|
@ -1340,8 +1341,10 @@
|
|||
startEventHandler : startEventHandler,
|
||||
stopEventHandler : stopEventHandler };
|
||||
view.initialRender(top);
|
||||
startEventHandlers();
|
||||
refreshView(function() {}, onMessyRestart);
|
||||
startEventHandlers(function() {
|
||||
refreshView(function() {}, onMessyRestart);
|
||||
});
|
||||
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user