blob: fc861cbf27e03a1455ee7ae4ff27693815def2e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
var $scenarioRunner = new angular.scenario.Runner(window, jQuery);
window.onload = function(){
try {
if (previousOnLoad) previousOnLoad();
} catch(e) {}
$scenarioRunner.run(jQuery(window.document.body));
};
})(window, document, window.onload);
|