Skip to content

Commit 20b35e1

Browse files
committed
v1.5.0-build.4468+sha.6a47c0d
1 parent b27b941 commit 20b35e1

34 files changed

+61
-61
lines changed
9.64 MB
Binary file not shown.

snapshot/angular-animate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.0-build.4467+sha.b0248b7
2+
* @license AngularJS v1.5.0-build.4468+sha.6a47c0d
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

snapshot/angular-animate.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-aria.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.0-build.4467+sha.b0248b7
2+
* @license AngularJS v1.5.0-build.4468+sha.6a47c0d
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

snapshot/angular-aria.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-cookies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.0-build.4467+sha.b0248b7
2+
* @license AngularJS v1.5.0-build.4468+sha.6a47c0d
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/

snapshot/angular-cookies.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

snapshot/angular-loader.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.5.0-build.4467+sha.b0248b7
2+
* @license AngularJS v1.5.0-build.4468+sha.6a47c0d
33
* (c) 2010-2016 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -87,7 +87,7 @@ function minErr(module, ErrorConstructor) {
8787
return match;
8888
});
8989

90-
message += '\nhttp://errors.angularjs.org/1.5.0-build.4467+sha.b0248b7/' +
90+
message += '\nhttp://errors.angularjs.org/1.5.0-build.4468+sha.6a47c0d/' +
9191
(module ? module + '/' : '') + code;
9292

9393
for (i = SKIP_INDEXES, paramPrefix = '?'; i < templateArgs.length; i++, paramPrefix = '&') {
@@ -417,7 +417,7 @@ function setupModuleLoader(window) {
417417
* - `bindings` – `{object=}` – Define DOM attribute binding to component properties.
418418
* Component properties are always bound to the component controller and not to the scope.
419419
* - `transclude` – `{boolean=}` – Whether {@link $compile#transclusion transclusion} is enabled.
420-
* Enabled by default.
420+
* Disabled by default.
421421
* - `isolate` – `{boolean=}` – Whether the new scope is isolated. Isolated by default.
422422
* - `restrict` - `{string=}` - String of subset of {@link ng.$compile#-restrict- EACM} which
423423
* restricts the component to specific directive declaration style. If omitted, this defaults to 'E'.
@@ -430,7 +430,7 @@ function setupModuleLoader(window) {
430430
* definitions are very simple and do not require the complexity behind defining directives.
431431
* Component definitions usually consist only of the template and the controller backing it.
432432
* In order to make the definition easier, components enforce best practices like controllerAs
433-
* and default behaviors like scope isolation, restrict to elements and allow transclusion.
433+
* and default behaviors like scope isolation, restrict to elements.
434434
*
435435
* <br />
436436
* Here are a few examples of how you would usually define components:
@@ -519,7 +519,7 @@ function setupModuleLoader(window) {
519519
controllerAs: identifierForController(options.controller) || options.controllerAs || name,
520520
template: makeInjectable(template),
521521
templateUrl: makeInjectable(options.templateUrl),
522-
transclude: options.transclude === undefined ? true : options.transclude,
522+
transclude: options.transclude === undefined ? false : options.transclude,
523523
scope: options.isolate === false ? true : {},
524524
bindToController: options.bindings || {},
525525
restrict: options.restrict || 'E'

snapshot/angular-loader.min.js

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

snapshot/angular-loader.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)