Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sven Franck
todomvc
Commits
6cf92ac3
Commit
6cf92ac3
authored
Aug 08, 2015
by
Kaido Kert
Committed by
Sam Saccone
Oct 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update angular version 1.4.1->1.4.3, add angular-resource
parent
5aeef166
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
872 additions
and
131 deletions
+872
-131
examples/angularjs/node_modules/angular-resource/angular-resource.js
...gularjs/node_modules/angular-resource/angular-resource.js
+669
-0
examples/angularjs/node_modules/angular-route/angular-route.js
...les/angularjs/node_modules/angular-route/angular-route.js
+5
-4
examples/angularjs/node_modules/angular/angular.js
examples/angularjs/node_modules/angular/angular.js
+195
-125
examples/angularjs/package.json
examples/angularjs/package.json
+3
-2
No files found.
examples/angularjs/node_modules/angular-resource/angular-resource.js
0 → 100644
View file @
6cf92ac3
This diff is collapsed.
Click to expand it.
examples/angularjs/node_modules/angular-route/angular-route.js
View file @
6cf92ac3
/**
* @license AngularJS v1.4.
1
* @license AngularJS v1.4.
3
* (c) 2010-2015 Google, Inc. http://angularjs.org
* License: MIT
*/
...
...
@@ -412,7 +412,9 @@ function $RouteProvider() {
* @name $route#$routeChangeSuccess
* @eventType broadcast on root scope
* @description
* Broadcasted after a route dependencies are resolved.
* Broadcasted after a route change has happened successfully.
* The `resolve` dependencies are now available in the `current.locals` property.
*
* {@link ngRoute.directive:ngView ngView} listens for the directive
* to instantiate the controller and render the view.
*
...
...
@@ -596,9 +598,8 @@ function $RouteProvider() {
if
(
angular
.
isFunction
(
templateUrl
))
{
templateUrl
=
templateUrl
(
nextRoute
.
params
);
}
templateUrl
=
$sce
.
getTrustedResourceUrl
(
templateUrl
);
if
(
angular
.
isDefined
(
templateUrl
))
{
nextRoute
.
loadedTemplateUrl
=
templateUrl
;
nextRoute
.
loadedTemplateUrl
=
$sce
.
valueOf
(
templateUrl
)
;
template
=
$templateRequest
(
templateUrl
);
}
}
...
...
examples/angularjs/node_modules/angular/angular.js
View file @
6cf92ac3
This diff is collapsed.
Click to expand it.
examples/angularjs/package.json
View file @
6cf92ac3
...
...
@@ -4,10 +4,11 @@
"test"
:
"karma start test/config/karma.conf.js"
},
"dependencies"
:
{
"angular"
:
"^1.4.
1
"
,
"angular"
:
"^1.4.
3
"
,
"todomvc-common"
:
"^1.0.0"
,
"todomvc-app-css"
:
"^1.0.1"
,
"angular-route"
:
"^1.3.12"
"angular-route"
:
"^ 1.4.3"
,
"angular-resource"
:
"^1.4.3"
},
"devDependencies"
:
{
"angular-mocks"
:
"^1.3.12"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment