mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-16 23:30:23 +00:00
fix(scenario): update to use our angular-scenario.js rather then karma
This commit is contained in:
parent
11f712bc3e
commit
29efd39745
2 changed files with 2 additions and 1 deletions
|
|
@ -1,6 +1,6 @@
|
|||
var angularFiles = require(__dirname + '/angularFiles.js');
|
||||
|
||||
files = [ANGULAR_SCENARIO, ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs-scenario.js'];
|
||||
files = ['build/angular-scenario.js', ANGULAR_SCENARIO_ADAPTER, 'build/docs/docs-scenario.js'];
|
||||
|
||||
autoWatch = false;
|
||||
singleRun = true;
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ angular.scenario.Application.prototype.navigateTo = function(url, loadFn, errorF
|
|||
$window.angular.resumeBootstrap([['$provide', function($provide) {
|
||||
$provide.decorator('$sniffer', function($delegate) {
|
||||
$delegate.transitions = false;
|
||||
$delegate.animations = false;
|
||||
return $delegate;
|
||||
});
|
||||
}]]);
|
||||
|
|
|
|||
Loading…
Reference in a new issue