mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 11:55:24 +00:00
(js/css) Update generated files
This commit is contained in:
+9
-7
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @license AngularJS v1.5.10
|
||||
* @license AngularJS v1.6.1
|
||||
* (c) 2010-2016 Google, Inc. http://angularjs.org
|
||||
* License: MIT
|
||||
*/
|
||||
@@ -1407,7 +1407,7 @@ var $AnimateCssProvider = ['$animateProvider', /** @this */ function($animatePro
|
||||
$$jqLite.addClass(element, activeClasses);
|
||||
|
||||
if (flags.recalculateTimingStyles) {
|
||||
fullClassName = node.className + ' ' + preparationClasses;
|
||||
fullClassName = node.getAttribute('class') + ' ' + preparationClasses;
|
||||
cacheKey = gcsHashFn(node, fullClassName);
|
||||
|
||||
timings = computeTimings(node, fullClassName, cacheKey);
|
||||
@@ -2236,8 +2236,10 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
|
||||
|
||||
this.$get = ['$$rAF', '$rootScope', '$rootElement', '$document', '$$HashMap',
|
||||
'$$animation', '$$AnimateRunner', '$templateRequest', '$$jqLite', '$$forceReflow',
|
||||
'$$isDocumentHidden',
|
||||
function($$rAF, $rootScope, $rootElement, $document, $$HashMap,
|
||||
$$animation, $$AnimateRunner, $templateRequest, $$jqLite, $$forceReflow) {
|
||||
$$animation, $$AnimateRunner, $templateRequest, $$jqLite, $$forceReflow,
|
||||
$$isDocumentHidden) {
|
||||
|
||||
var activeAnimationsLookup = new $$HashMap();
|
||||
var disabledElementsLookup = new $$HashMap();
|
||||
@@ -2491,7 +2493,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
|
||||
return runner;
|
||||
}
|
||||
|
||||
var className = [node.className, options.addClass, options.removeClass].join(' ');
|
||||
var className = [node.getAttribute('class'), options.addClass, options.removeClass].join(' ');
|
||||
if (!isAnimatableClassName(className)) {
|
||||
close();
|
||||
return runner;
|
||||
@@ -2499,7 +2501,7 @@ var $$AnimateQueueProvider = ['$animateProvider', /** @this */ function($animate
|
||||
|
||||
var isStructural = ['enter', 'move', 'leave'].indexOf(event) >= 0;
|
||||
|
||||
var documentHidden = $document[0].hidden;
|
||||
var documentHidden = $$isDocumentHidden();
|
||||
|
||||
// this is a hard disable of all animations for the application or on
|
||||
// the element itself, therefore there is no need to continue further
|
||||
@@ -3910,7 +3912,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
|
||||
deps="angular-animate.js;angular-route.js"
|
||||
animations="true">
|
||||
<file name="index.html">
|
||||
<a href="#/">Home</a>
|
||||
<a href="#!/">Home</a>
|
||||
<hr />
|
||||
<div class="view-container">
|
||||
<div ng-view class="view"></div>
|
||||
@@ -3958,7 +3960,7 @@ var ngAnimateSwapDirective = ['$animate', '$rootScope', function($animate, $root
|
||||
<h2>Welcome to the home page</h1>
|
||||
<p>Please click on an element</p>
|
||||
<a class="record"
|
||||
ng-href="#/profile/{{ record.id }}"
|
||||
ng-href="#!/profile/{{ record.id }}"
|
||||
ng-animate-ref="{{ record.id }}"
|
||||
ng-repeat="record in records">
|
||||
{{ record.title }}
|
||||
|
||||
Reference in New Issue
Block a user