
2.5
アプリケーションをロードする
45
appOnReady$.ready()
appOnReady
*
learnjs.appOnReady()
showView
learnjs/2500/public/tests/app_spec.js
it('
invokes the router when loaded
', function() {
spyOn(learnjs, '
showView
');
learnjs.appOnReady();
expect(learnjs.showView).toHaveBeenCalledWith(window.location.hash);
});
app.js
learnjs/2500/public/app.js
learnjs.appOnReady = function ...