Skip to content

Commit f969d47

Browse files
committed
v1.6.8-build.5511+sha.394b185
1 parent 660c27d commit f969d47

35 files changed

+313
-327
lines changed
7.67 MB
Binary file not shown.

snapshot/angular-animate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.6.8-build.5510+sha.da72477
2+
* @license AngularJS v1.6.8-build.5511+sha.394b185
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -4139,7 +4139,7 @@ angular.module('ngAnimate', [], function initAngularHelpers() {
41394139
isFunction = angular.isFunction;
41404140
isElement = angular.isElement;
41414141
})
4142-
.info({ angularVersion: '1.6.8-build.5510+sha.da72477' })
4142+
.info({ angularVersion: '1.6.8-build.5511+sha.394b185' })
41434143
.directive('ngAnimateSwap', ngAnimateSwapDirective)
41444144

41454145
.directive('ngAnimateChildren', $$AnimateChildrenDirective)

snapshot/angular-animate.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-aria.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.6.8-build.5510+sha.da72477
2+
* @license AngularJS v1.6.8-build.5511+sha.394b185
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -57,7 +57,7 @@
5757
* {@link guide/accessibility Developer Guide}.
5858
*/
5959
var ngAriaModule = angular.module('ngAria', ['ng']).
60-
info({ angularVersion: '1.6.8-build.5510+sha.da72477' }).
60+
info({ angularVersion: '1.6.8-build.5511+sha.394b185' }).
6161
provider('$aria', $AriaProvider);
6262

6363
/**

snapshot/angular-aria.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-cookies.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.6.8-build.5510+sha.da72477
2+
* @license AngularJS v1.6.8-build.5511+sha.394b185
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -17,7 +17,7 @@
1717

1818

1919
angular.module('ngCookies', ['ng']).
20-
info({ angularVersion: '1.6.8-build.5510+sha.da72477' }).
20+
info({ angularVersion: '1.6.8-build.5511+sha.394b185' }).
2121
/**
2222
* @ngdoc provider
2323
* @name $cookiesProvider

snapshot/angular-cookies.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.6.8-build.5510+sha.da72477
2+
* @license AngularJS v1.6.8-build.5511+sha.394b185
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -170,7 +170,7 @@ function minErr(module, ErrorConstructor) {
170170
return match;
171171
});
172172

173-
message += '\nhttp://errors.angularjs.org/1.6.8-build.5510+sha.da72477/' +
173+
message += '\nhttp://errors.angularjs.org/1.6.8-build.5511+sha.394b185/' +
174174
(module ? module + '/' : '') + code;
175175

176176
for (i = 0, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') {

snapshot/angular-loader.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-message-format.js

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.6.8-build.5510+sha.da72477
2+
* @license AngularJS v1.6.8-build.5511+sha.394b185
33
* (c) 2010-2017 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -39,7 +39,7 @@ function parseTextLiteral(text) {
3939
parsedFn['$$watchDelegate'] = function watchDelegate(scope, listener, objectEquality) {
4040
var unwatch = scope['$watch'](noop,
4141
function textLiteralWatcher() {
42-
if (isFunction(listener)) { listener(text, text, scope); }
42+
listener(text, text, scope);
4343
unwatch();
4444
},
4545
objectEquality);
@@ -63,7 +63,7 @@ function subtractOffset(expressionFn, offset) {
6363
parsedFn['$$watchDelegate'] = function watchDelegate(scope, listener, objectEquality) {
6464
unwatch = scope['$watch'](expressionFn,
6565
function pluralExpressionWatchListener(newValue, oldValue) {
66-
if (isFunction(listener)) { listener(minusOffset(newValue), minusOffset(oldValue), scope); }
66+
listener(minusOffset(newValue), minusOffset(oldValue), scope);
6767
},
6868
objectEquality);
6969
return unwatch;
@@ -137,9 +137,7 @@ MessageSelectorWatchers.prototype.expressionFnListener = function expressionFnLi
137137
};
138138

139139
MessageSelectorWatchers.prototype.messageFnListener = function messageFnListener(newMessage, oldMessage) {
140-
if (isFunction(this.listener)) {
141-
this.listener.call(null, newMessage, newMessage === oldMessage ? newMessage : this.lastMessage, this.scope);
142-
}
140+
this.listener.call(null, newMessage, newMessage === oldMessage ? newMessage : this.lastMessage, this.scope);
143141
this.lastMessage = newMessage;
144142
};
145143

@@ -313,9 +311,7 @@ function InterpolationPartsWatcher(interpolationParts, scope, listener, objectEq
313311

314312
InterpolationPartsWatcher.prototype.watchListener = function watchListener(newExpressionValues, oldExpressionValues) {
315313
var result = this.interpolationParts.getResult(newExpressionValues);
316-
if (isFunction(this.listener)) {
317-
this.listener.call(null, result, newExpressionValues === oldExpressionValues ? result : this.previousResult, this.scope);
318-
}
314+
this.listener.call(null, result, newExpressionValues === oldExpressionValues ? result : this.previousResult, this.scope);
319315
this.previousResult = result;
320316
};
321317

@@ -1060,7 +1056,7 @@ var toJson;
10601056
var $$stringify;
10611057

10621058
var module = window['angular']['module']('ngMessageFormat', ['ng']);
1063-
module['info']({ 'angularVersion': '1.6.8-build.5510+sha.da72477' });
1059+
module['info']({ 'angularVersion': '1.6.8-build.5511+sha.394b185' });
10641060
module['factory']('$$messageFormat', $$MessageFormatFactory);
10651061
module['config'](['$provide', function($provide) {
10661062
$interpolateMinErr = window['angular']['$interpolateMinErr'];

0 commit comments

Comments
 (0)