Update to Angular 1.1.4
This commit is contained in:
parent
72a485d6e8
commit
f5fc1369ad
585 changed files with 48055 additions and 3041 deletions
11
lib/angular/docs/js/disableAnimations.js
vendored
Executable file
11
lib/angular/docs/js/disableAnimations.js
vendored
Executable file
|
@ -0,0 +1,11 @@
|
|||
'use strict';
|
||||
|
||||
console.log('#1 disableAnimations.js loaded');
|
||||
angular.module('disableAnimations', []).config(function($provide) {
|
||||
console.log('#2 disableAnimations module loaded');
|
||||
$provide.decorator('$sniffer', function($delegate) {
|
||||
console.log('#3 sniffer decorated');
|
||||
$delegate.supportsTransitions = false;
|
||||
return $delegate;
|
||||
});
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue