Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 0fd44a1

Browse files
IgorMinarchrismilleruk
authored andcommitted
upgrade to angular 1.0.6 universal-irreversibility
1 parent a59cad6 commit 0fd44a1

14 files changed

+372
-296
lines changed

app/lib/angular/angular-cookies.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.5
2+
* @license AngularJS v1.0.6
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -180,4 +180,5 @@ angular.module('ngCookies', ['ng']).
180180

181181
}]);
182182

183+
183184
})(window, window.angular);

app/lib/angular/angular-cookies.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
AngularJS v1.0.5
2+
AngularJS v1.0.6
33
(c) 2010-2012 Google, Inc. http://angularjs.org
44
License: MIT
55
*/

app/lib/angular/angular-loader.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.5
2+
* @license AngularJS v1.0.6
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -254,6 +254,7 @@ function setupModuleLoader(window) {
254254
});
255255

256256
}
257+
257258
)(window);
258259

259260
/**

app/lib/angular/angular-loader.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
AngularJS v1.0.5
2+
AngularJS v1.0.6
33
(c) 2010-2012 Google, Inc. http://angularjs.org
44
License: MIT
55
*/

app/lib/angular/angular-resource.js

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.5
2+
* @license AngularJS v1.0.6
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -24,6 +24,17 @@
2424
* The returned resource object has action methods which provide high-level behaviors without
2525
* the need to interact with the low level {@link ng.$http $http} service.
2626
*
27+
* # Installation
28+
* To use $resource make sure you have included the `angular-resource.js` that comes in Angular
29+
* package. You can also find this file on Google CDN, bower as well as at
30+
* {@link http://code.angularjs.org/ code.angularjs.org}.
31+
*
32+
* Finally load the module in your application:
33+
*
34+
* angular.module('app', ['ngResource']);
35+
*
36+
* and you are ready to get started!
37+
*
2738
* @param {string} url A parameterized URL template with parameters prefixed by `:` as in
2839
* `/user/:username`. If you are using a URL with a port number (e.g.
2940
* `http://example.com:8080/api`), you'll need to escape the colon character before the port
@@ -268,7 +279,7 @@ angular.module('ngResource', ['ng']).
268279
replace(/%3A/gi, ':').
269280
replace(/%24/g, '$').
270281
replace(/%2C/gi, ',').
271-
replace((pctEncodeSpaces ? null : /%20/g), '+');
282+
replace(/%20/g, (pctEncodeSpaces ? '%20' : '+'));
272283
}
273284

274285
function Route(template, defaults) {
@@ -442,4 +453,5 @@ angular.module('ngResource', ['ng']).
442453
return ResourceFactory;
443454
}]);
444455

456+
445457
})(window, window.angular);

app/lib/angular/angular-resource.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.

app/lib/angular/angular-sanitize.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license AngularJS v1.0.5
2+
* @license AngularJS v1.0.6
33
* (c) 2010-2012 Google, Inc. http://angularjs.org
44
* License: MIT
55
*/
@@ -422,6 +422,7 @@ angular.module('ngSanitize').directive('ngBindHtml', ['$sanitize', function($san
422422
});
423423
};
424424
}]);
425+
425426
/**
426427
* @ngdoc filter
427428
* @name ngSanitize.filter:linky
@@ -532,4 +533,5 @@ angular.module('ngSanitize').filter('linky', function() {
532533
};
533534
});
534535

536+
535537
})(window, window.angular);

app/lib/angular/angular-sanitize.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.

0 commit comments

Comments
 (0)