angular-gem 1.3.7 → 1.3.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/angular-gem/version.rb +1 -1
- data/vendor/assets/javascripts/1.3.8/angular-animate.js +2138 -0
- data/vendor/assets/javascripts/1.3.8/angular-aria.js +339 -0
- data/vendor/assets/javascripts/1.3.8/angular-cookies.js +206 -0
- data/vendor/assets/javascripts/1.3.8/angular-loader.js +405 -0
- data/vendor/assets/javascripts/1.3.8/angular-messages.js +400 -0
- data/vendor/assets/javascripts/1.3.8/angular-mocks.js +2382 -0
- data/vendor/assets/javascripts/1.3.8/angular-resource.js +667 -0
- data/vendor/assets/javascripts/1.3.8/angular-route.js +995 -0
- data/vendor/assets/javascripts/1.3.8/angular-sanitize.js +680 -0
- data/vendor/assets/javascripts/1.3.8/angular-scenario.js +37424 -0
- data/vendor/assets/javascripts/1.3.8/angular-touch.js +622 -0
- data/vendor/assets/javascripts/1.3.8/angular.js +26070 -0
- data/vendor/assets/javascripts/angular-animate.js +3 -2
- data/vendor/assets/javascripts/angular-aria.js +20 -13
- data/vendor/assets/javascripts/angular-cookies.js +1 -1
- data/vendor/assets/javascripts/angular-loader.js +2 -2
- data/vendor/assets/javascripts/angular-messages.js +1 -1
- data/vendor/assets/javascripts/angular-mocks.js +15 -15
- data/vendor/assets/javascripts/angular-resource.js +1 -1
- data/vendor/assets/javascripts/angular-route.js +1 -1
- data/vendor/assets/javascripts/angular-sanitize.js +1 -1
- data/vendor/assets/javascripts/angular-scenario.js +95 -62
- data/vendor/assets/javascripts/angular-touch.js +1 -1
- data/vendor/assets/javascripts/angular.js +95 -62
- metadata +14 -2
@@ -0,0 +1,339 @@
|
|
1
|
+
/**
|
2
|
+
* @license AngularJS v1.3.8
|
3
|
+
* (c) 2010-2014 Google, Inc. http://angularjs.org
|
4
|
+
* License: MIT
|
5
|
+
*/
|
6
|
+
(function(window, angular, undefined) {'use strict';
|
7
|
+
|
8
|
+
/**
|
9
|
+
* @ngdoc module
|
10
|
+
* @name ngAria
|
11
|
+
* @description
|
12
|
+
*
|
13
|
+
* The `ngAria` module provides support for common
|
14
|
+
* [<abbr title="Accessible Rich Internet Applications">ARIA</abbr>](http://www.w3.org/TR/wai-aria/)
|
15
|
+
* attributes that convey state or semantic information about the application for users
|
16
|
+
* of assistive technologies, such as screen readers.
|
17
|
+
*
|
18
|
+
* <div doc-module-components="ngAria"></div>
|
19
|
+
*
|
20
|
+
* ## Usage
|
21
|
+
*
|
22
|
+
* For ngAria to do its magic, simply include the module as a dependency. The directives supported
|
23
|
+
* by ngAria are:
|
24
|
+
* `ngModel`, `ngDisabled`, `ngShow`, `ngHide`, `ngClick`, `ngDblClick`, and `ngMessages`.
|
25
|
+
*
|
26
|
+
* Below is a more detailed breakdown of the attributes handled by ngAria:
|
27
|
+
*
|
28
|
+
* | Directive | Supported Attributes |
|
29
|
+
* |---------------------------------------------|----------------------------------------------------------------------------------------|
|
30
|
+
* | {@link ng.directive:ngModel ngModel} | aria-checked, aria-valuemin, aria-valuemax, aria-valuenow, aria-invalid, aria-required |
|
31
|
+
* | {@link ng.directive:ngDisabled ngDisabled} | aria-disabled |
|
32
|
+
* | {@link ng.directive:ngShow ngShow} | aria-hidden |
|
33
|
+
* | {@link ng.directive:ngHide ngHide} | aria-hidden |
|
34
|
+
* | {@link ng.directive:ngClick ngClick} | tabindex, keypress event |
|
35
|
+
* | {@link ng.directive:ngDblclick ngDblclick} | tabindex |
|
36
|
+
* | {@link module:ngMessages ngMessages} | aria-live |
|
37
|
+
*
|
38
|
+
* Find out more information about each directive by reading the
|
39
|
+
* {@link guide/accessibility ngAria Developer Guide}.
|
40
|
+
*
|
41
|
+
* ##Example
|
42
|
+
* Using ngDisabled with ngAria:
|
43
|
+
* ```html
|
44
|
+
* <md-checkbox ng-disabled="disabled">
|
45
|
+
* ```
|
46
|
+
* Becomes:
|
47
|
+
* ```html
|
48
|
+
* <md-checkbox ng-disabled="disabled" aria-disabled="true">
|
49
|
+
* ```
|
50
|
+
*
|
51
|
+
* ##Disabling Attributes
|
52
|
+
* It's possible to disable individual attributes added by ngAria with the
|
53
|
+
* {@link ngAria.$ariaProvider#config config} method. For more details, see the
|
54
|
+
* {@link guide/accessibility Developer Guide}.
|
55
|
+
*/
|
56
|
+
/* global -ngAriaModule */
|
57
|
+
var ngAriaModule = angular.module('ngAria', ['ng']).
|
58
|
+
provider('$aria', $AriaProvider);
|
59
|
+
|
60
|
+
/**
|
61
|
+
* @ngdoc provider
|
62
|
+
* @name $ariaProvider
|
63
|
+
*
|
64
|
+
* @description
|
65
|
+
*
|
66
|
+
* Used for configuring the ARIA attributes injected and managed by ngAria.
|
67
|
+
*
|
68
|
+
* ```js
|
69
|
+
* angular.module('myApp', ['ngAria'], function config($ariaProvider) {
|
70
|
+
* $ariaProvider.config({
|
71
|
+
* ariaValue: true,
|
72
|
+
* tabindex: false
|
73
|
+
* });
|
74
|
+
* });
|
75
|
+
*```
|
76
|
+
*
|
77
|
+
* ## Dependencies
|
78
|
+
* Requires the {@link ngAria} module to be installed.
|
79
|
+
*
|
80
|
+
*/
|
81
|
+
function $AriaProvider() {
|
82
|
+
var config = {
|
83
|
+
ariaHidden: true,
|
84
|
+
ariaChecked: true,
|
85
|
+
ariaDisabled: true,
|
86
|
+
ariaRequired: true,
|
87
|
+
ariaInvalid: true,
|
88
|
+
ariaMultiline: true,
|
89
|
+
ariaValue: true,
|
90
|
+
tabindex: true,
|
91
|
+
bindKeypress: true
|
92
|
+
};
|
93
|
+
|
94
|
+
/**
|
95
|
+
* @ngdoc method
|
96
|
+
* @name $ariaProvider#config
|
97
|
+
*
|
98
|
+
* @param {object} config object to enable/disable specific ARIA attributes
|
99
|
+
*
|
100
|
+
* - **ariaHidden** – `{boolean}` – Enables/disables aria-hidden tags
|
101
|
+
* - **ariaChecked** – `{boolean}` – Enables/disables aria-checked tags
|
102
|
+
* - **ariaDisabled** – `{boolean}` – Enables/disables aria-disabled tags
|
103
|
+
* - **ariaRequired** – `{boolean}` – Enables/disables aria-required tags
|
104
|
+
* - **ariaInvalid** – `{boolean}` – Enables/disables aria-invalid tags
|
105
|
+
* - **ariaMultiline** – `{boolean}` – Enables/disables aria-multiline tags
|
106
|
+
* - **ariaValue** – `{boolean}` – Enables/disables aria-valuemin, aria-valuemax and aria-valuenow tags
|
107
|
+
* - **tabindex** – `{boolean}` – Enables/disables tabindex tags
|
108
|
+
* - **bindKeypress** – `{boolean}` – Enables/disables keypress event binding on ng-click
|
109
|
+
*
|
110
|
+
* @description
|
111
|
+
* Enables/disables various ARIA attributes
|
112
|
+
*/
|
113
|
+
this.config = function(newConfig) {
|
114
|
+
config = angular.extend(config, newConfig);
|
115
|
+
};
|
116
|
+
|
117
|
+
function watchExpr(attrName, ariaAttr, negate) {
|
118
|
+
return function(scope, elem, attr) {
|
119
|
+
var ariaCamelName = attr.$normalize(ariaAttr);
|
120
|
+
if (config[ariaCamelName] && !attr[ariaCamelName]) {
|
121
|
+
scope.$watch(attr[attrName], function(boolVal) {
|
122
|
+
if (negate) {
|
123
|
+
boolVal = !boolVal;
|
124
|
+
}
|
125
|
+
elem.attr(ariaAttr, boolVal);
|
126
|
+
});
|
127
|
+
}
|
128
|
+
};
|
129
|
+
}
|
130
|
+
|
131
|
+
/**
|
132
|
+
* @ngdoc service
|
133
|
+
* @name $aria
|
134
|
+
*
|
135
|
+
* @description
|
136
|
+
*
|
137
|
+
* The $aria service contains helper methods for applying common
|
138
|
+
* [ARIA](http://www.w3.org/TR/wai-aria/) attributes to HTML directives.
|
139
|
+
*
|
140
|
+
* ngAria injects common accessibility attributes that tell assistive technologies when HTML
|
141
|
+
* elements are enabled, selected, hidden, and more. To see how this is performed with ngAria,
|
142
|
+
* let's review a code snippet from ngAria itself:
|
143
|
+
*
|
144
|
+
*```js
|
145
|
+
* ngAriaModule.directive('ngDisabled', ['$aria', function($aria) {
|
146
|
+
* return $aria.$$watchExpr('ngDisabled', 'aria-disabled');
|
147
|
+
* }])
|
148
|
+
*```
|
149
|
+
* Shown above, the ngAria module creates a directive with the same signature as the
|
150
|
+
* traditional `ng-disabled` directive. But this ngAria version is dedicated to
|
151
|
+
* solely managing accessibility attributes. The internal `$aria` service is used to watch the
|
152
|
+
* boolean attribute `ngDisabled`. If it has not been explicitly set by the developer,
|
153
|
+
* `aria-disabled` is injected as an attribute with its value synchronized to the value in
|
154
|
+
* `ngDisabled`.
|
155
|
+
*
|
156
|
+
* Because ngAria hooks into the `ng-disabled` directive, developers do not have to do
|
157
|
+
* anything to enable this feature. The `aria-disabled` attribute is automatically managed
|
158
|
+
* simply as a silent side-effect of using `ng-disabled` with the ngAria module.
|
159
|
+
*
|
160
|
+
* The full list of directives that interface with ngAria:
|
161
|
+
* * **ngModel**
|
162
|
+
* * **ngShow**
|
163
|
+
* * **ngHide**
|
164
|
+
* * **ngClick**
|
165
|
+
* * **ngDblclick**
|
166
|
+
* * **ngMessages**
|
167
|
+
* * **ngDisabled**
|
168
|
+
*
|
169
|
+
* Read the {@link guide/accessibility ngAria Developer Guide} for a thorough explanation of each
|
170
|
+
* directive.
|
171
|
+
*
|
172
|
+
*
|
173
|
+
* ## Dependencies
|
174
|
+
* Requires the {@link ngAria} module to be installed.
|
175
|
+
*/
|
176
|
+
this.$get = function() {
|
177
|
+
return {
|
178
|
+
config: function(key) {
|
179
|
+
return config[key];
|
180
|
+
},
|
181
|
+
$$watchExpr: watchExpr
|
182
|
+
};
|
183
|
+
};
|
184
|
+
}
|
185
|
+
|
186
|
+
|
187
|
+
ngAriaModule.directive('ngShow', ['$aria', function($aria) {
|
188
|
+
return $aria.$$watchExpr('ngShow', 'aria-hidden', true);
|
189
|
+
}])
|
190
|
+
.directive('ngHide', ['$aria', function($aria) {
|
191
|
+
return $aria.$$watchExpr('ngHide', 'aria-hidden', false);
|
192
|
+
}])
|
193
|
+
.directive('ngModel', ['$aria', function($aria) {
|
194
|
+
|
195
|
+
function shouldAttachAttr(attr, normalizedAttr, elem) {
|
196
|
+
return $aria.config(normalizedAttr) && !elem.attr(attr);
|
197
|
+
}
|
198
|
+
|
199
|
+
function getShape(attr, elem) {
|
200
|
+
var type = attr.type,
|
201
|
+
role = attr.role;
|
202
|
+
|
203
|
+
return ((type || role) === 'checkbox' || role === 'menuitemcheckbox') ? 'checkbox' :
|
204
|
+
((type || role) === 'radio' || role === 'menuitemradio') ? 'radio' :
|
205
|
+
(type === 'range' || role === 'progressbar' || role === 'slider') ? 'range' :
|
206
|
+
(type || role) === 'textbox' || elem[0].nodeName === 'TEXTAREA' ? 'multiline' : '';
|
207
|
+
}
|
208
|
+
|
209
|
+
return {
|
210
|
+
restrict: 'A',
|
211
|
+
require: '?ngModel',
|
212
|
+
link: function(scope, elem, attr, ngModel) {
|
213
|
+
var shape = getShape(attr, elem);
|
214
|
+
var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem);
|
215
|
+
|
216
|
+
function ngAriaWatchModelValue() {
|
217
|
+
return ngModel.$modelValue;
|
218
|
+
}
|
219
|
+
|
220
|
+
function getRadioReaction() {
|
221
|
+
if (needsTabIndex) {
|
222
|
+
needsTabIndex = false;
|
223
|
+
return function ngAriaRadioReaction(newVal) {
|
224
|
+
var boolVal = newVal === attr.value;
|
225
|
+
elem.attr('aria-checked', boolVal);
|
226
|
+
elem.attr('tabindex', 0 - !boolVal);
|
227
|
+
};
|
228
|
+
} else {
|
229
|
+
return function ngAriaRadioReaction(newVal) {
|
230
|
+
elem.attr('aria-checked', newVal === attr.value);
|
231
|
+
};
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
function ngAriaCheckboxReaction(newVal) {
|
236
|
+
elem.attr('aria-checked', !!newVal);
|
237
|
+
}
|
238
|
+
|
239
|
+
switch (shape) {
|
240
|
+
case 'radio':
|
241
|
+
case 'checkbox':
|
242
|
+
if (shouldAttachAttr('aria-checked', 'ariaChecked', elem)) {
|
243
|
+
scope.$watch(ngAriaWatchModelValue, shape === 'radio' ?
|
244
|
+
getRadioReaction() : ngAriaCheckboxReaction);
|
245
|
+
}
|
246
|
+
break;
|
247
|
+
case 'range':
|
248
|
+
if ($aria.config('ariaValue')) {
|
249
|
+
if (attr.min && !elem.attr('aria-valuemin')) {
|
250
|
+
elem.attr('aria-valuemin', attr.min);
|
251
|
+
}
|
252
|
+
if (attr.max && !elem.attr('aria-valuemax')) {
|
253
|
+
elem.attr('aria-valuemax', attr.max);
|
254
|
+
}
|
255
|
+
if (!elem.attr('aria-valuenow')) {
|
256
|
+
scope.$watch(ngAriaWatchModelValue, function ngAriaValueNowReaction(newVal) {
|
257
|
+
elem.attr('aria-valuenow', newVal);
|
258
|
+
});
|
259
|
+
}
|
260
|
+
}
|
261
|
+
break;
|
262
|
+
case 'multiline':
|
263
|
+
if (shouldAttachAttr('aria-multiline', 'ariaMultiline', elem)) {
|
264
|
+
elem.attr('aria-multiline', true);
|
265
|
+
}
|
266
|
+
break;
|
267
|
+
}
|
268
|
+
|
269
|
+
if (needsTabIndex) {
|
270
|
+
elem.attr('tabindex', 0);
|
271
|
+
}
|
272
|
+
|
273
|
+
if (ngModel.$validators.required && shouldAttachAttr('aria-required', 'ariaRequired', elem)) {
|
274
|
+
scope.$watch(function ngAriaRequiredWatch() {
|
275
|
+
return ngModel.$error.required;
|
276
|
+
}, function ngAriaRequiredReaction(newVal) {
|
277
|
+
elem.attr('aria-required', !!newVal);
|
278
|
+
});
|
279
|
+
}
|
280
|
+
|
281
|
+
if (shouldAttachAttr('aria-invalid', 'ariaInvalid', elem)) {
|
282
|
+
scope.$watch(function ngAriaInvalidWatch() {
|
283
|
+
return ngModel.$invalid;
|
284
|
+
}, function ngAriaInvalidReaction(newVal) {
|
285
|
+
elem.attr('aria-invalid', !!newVal);
|
286
|
+
});
|
287
|
+
}
|
288
|
+
}
|
289
|
+
};
|
290
|
+
}])
|
291
|
+
.directive('ngDisabled', ['$aria', function($aria) {
|
292
|
+
return $aria.$$watchExpr('ngDisabled', 'aria-disabled');
|
293
|
+
}])
|
294
|
+
.directive('ngMessages', function() {
|
295
|
+
return {
|
296
|
+
restrict: 'A',
|
297
|
+
require: '?ngMessages',
|
298
|
+
link: function(scope, elem, attr, ngMessages) {
|
299
|
+
if (!elem.attr('aria-live')) {
|
300
|
+
elem.attr('aria-live', 'assertive');
|
301
|
+
}
|
302
|
+
}
|
303
|
+
};
|
304
|
+
})
|
305
|
+
.directive('ngClick',['$aria', '$parse', function($aria, $parse) {
|
306
|
+
return {
|
307
|
+
restrict: 'A',
|
308
|
+
compile: function(elem, attr) {
|
309
|
+
var fn = $parse(attr.ngClick, /* interceptorFn */ null, /* expensiveChecks */ true);
|
310
|
+
return function(scope, elem, attr) {
|
311
|
+
if ($aria.config('tabindex') && !elem.attr('tabindex')) {
|
312
|
+
elem.attr('tabindex', 0);
|
313
|
+
}
|
314
|
+
|
315
|
+
if ($aria.config('bindKeypress') && !attr.ngKeypress) {
|
316
|
+
elem.on('keypress', function(event) {
|
317
|
+
if (event.keyCode === 32 || event.keyCode === 13) {
|
318
|
+
scope.$apply(callback);
|
319
|
+
}
|
320
|
+
|
321
|
+
function callback() {
|
322
|
+
fn(scope, { $event: event });
|
323
|
+
}
|
324
|
+
});
|
325
|
+
}
|
326
|
+
};
|
327
|
+
}
|
328
|
+
};
|
329
|
+
}])
|
330
|
+
.directive('ngDblclick', ['$aria', function($aria) {
|
331
|
+
return function(scope, elem, attr) {
|
332
|
+
if ($aria.config('tabindex') && !elem.attr('tabindex')) {
|
333
|
+
elem.attr('tabindex', 0);
|
334
|
+
}
|
335
|
+
};
|
336
|
+
}]);
|
337
|
+
|
338
|
+
|
339
|
+
})(window, window.angular);
|
@@ -0,0 +1,206 @@
|
|
1
|
+
/**
|
2
|
+
* @license AngularJS v1.3.8
|
3
|
+
* (c) 2010-2014 Google, Inc. http://angularjs.org
|
4
|
+
* License: MIT
|
5
|
+
*/
|
6
|
+
(function(window, angular, undefined) {'use strict';
|
7
|
+
|
8
|
+
/**
|
9
|
+
* @ngdoc module
|
10
|
+
* @name ngCookies
|
11
|
+
* @description
|
12
|
+
*
|
13
|
+
* # ngCookies
|
14
|
+
*
|
15
|
+
* The `ngCookies` module provides a convenient wrapper for reading and writing browser cookies.
|
16
|
+
*
|
17
|
+
*
|
18
|
+
* <div doc-module-components="ngCookies"></div>
|
19
|
+
*
|
20
|
+
* See {@link ngCookies.$cookies `$cookies`} and
|
21
|
+
* {@link ngCookies.$cookieStore `$cookieStore`} for usage.
|
22
|
+
*/
|
23
|
+
|
24
|
+
|
25
|
+
angular.module('ngCookies', ['ng']).
|
26
|
+
/**
|
27
|
+
* @ngdoc service
|
28
|
+
* @name $cookies
|
29
|
+
*
|
30
|
+
* @description
|
31
|
+
* Provides read/write access to browser's cookies.
|
32
|
+
*
|
33
|
+
* Only a simple Object is exposed and by adding or removing properties to/from this object, new
|
34
|
+
* cookies are created/deleted at the end of current $eval.
|
35
|
+
* The object's properties can only be strings.
|
36
|
+
*
|
37
|
+
* Requires the {@link ngCookies `ngCookies`} module to be installed.
|
38
|
+
*
|
39
|
+
* @example
|
40
|
+
*
|
41
|
+
* ```js
|
42
|
+
* angular.module('cookiesExample', ['ngCookies'])
|
43
|
+
* .controller('ExampleController', ['$cookies', function($cookies) {
|
44
|
+
* // Retrieving a cookie
|
45
|
+
* var favoriteCookie = $cookies.myFavorite;
|
46
|
+
* // Setting a cookie
|
47
|
+
* $cookies.myFavorite = 'oatmeal';
|
48
|
+
* }]);
|
49
|
+
* ```
|
50
|
+
*/
|
51
|
+
factory('$cookies', ['$rootScope', '$browser', function($rootScope, $browser) {
|
52
|
+
var cookies = {},
|
53
|
+
lastCookies = {},
|
54
|
+
lastBrowserCookies,
|
55
|
+
runEval = false,
|
56
|
+
copy = angular.copy,
|
57
|
+
isUndefined = angular.isUndefined;
|
58
|
+
|
59
|
+
//creates a poller fn that copies all cookies from the $browser to service & inits the service
|
60
|
+
$browser.addPollFn(function() {
|
61
|
+
var currentCookies = $browser.cookies();
|
62
|
+
if (lastBrowserCookies != currentCookies) { //relies on browser.cookies() impl
|
63
|
+
lastBrowserCookies = currentCookies;
|
64
|
+
copy(currentCookies, lastCookies);
|
65
|
+
copy(currentCookies, cookies);
|
66
|
+
if (runEval) $rootScope.$apply();
|
67
|
+
}
|
68
|
+
})();
|
69
|
+
|
70
|
+
runEval = true;
|
71
|
+
|
72
|
+
//at the end of each eval, push cookies
|
73
|
+
//TODO: this should happen before the "delayed" watches fire, because if some cookies are not
|
74
|
+
// strings or browser refuses to store some cookies, we update the model in the push fn.
|
75
|
+
$rootScope.$watch(push);
|
76
|
+
|
77
|
+
return cookies;
|
78
|
+
|
79
|
+
|
80
|
+
/**
|
81
|
+
* Pushes all the cookies from the service to the browser and verifies if all cookies were
|
82
|
+
* stored.
|
83
|
+
*/
|
84
|
+
function push() {
|
85
|
+
var name,
|
86
|
+
value,
|
87
|
+
browserCookies,
|
88
|
+
updated;
|
89
|
+
|
90
|
+
//delete any cookies deleted in $cookies
|
91
|
+
for (name in lastCookies) {
|
92
|
+
if (isUndefined(cookies[name])) {
|
93
|
+
$browser.cookies(name, undefined);
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
//update all cookies updated in $cookies
|
98
|
+
for (name in cookies) {
|
99
|
+
value = cookies[name];
|
100
|
+
if (!angular.isString(value)) {
|
101
|
+
value = '' + value;
|
102
|
+
cookies[name] = value;
|
103
|
+
}
|
104
|
+
if (value !== lastCookies[name]) {
|
105
|
+
$browser.cookies(name, value);
|
106
|
+
updated = true;
|
107
|
+
}
|
108
|
+
}
|
109
|
+
|
110
|
+
//verify what was actually stored
|
111
|
+
if (updated) {
|
112
|
+
updated = false;
|
113
|
+
browserCookies = $browser.cookies();
|
114
|
+
|
115
|
+
for (name in cookies) {
|
116
|
+
if (cookies[name] !== browserCookies[name]) {
|
117
|
+
//delete or reset all cookies that the browser dropped from $cookies
|
118
|
+
if (isUndefined(browserCookies[name])) {
|
119
|
+
delete cookies[name];
|
120
|
+
} else {
|
121
|
+
cookies[name] = browserCookies[name];
|
122
|
+
}
|
123
|
+
updated = true;
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|
127
|
+
}
|
128
|
+
}]).
|
129
|
+
|
130
|
+
|
131
|
+
/**
|
132
|
+
* @ngdoc service
|
133
|
+
* @name $cookieStore
|
134
|
+
* @requires $cookies
|
135
|
+
*
|
136
|
+
* @description
|
137
|
+
* Provides a key-value (string-object) storage, that is backed by session cookies.
|
138
|
+
* Objects put or retrieved from this storage are automatically serialized or
|
139
|
+
* deserialized by angular's toJson/fromJson.
|
140
|
+
*
|
141
|
+
* Requires the {@link ngCookies `ngCookies`} module to be installed.
|
142
|
+
*
|
143
|
+
* @example
|
144
|
+
*
|
145
|
+
* ```js
|
146
|
+
* angular.module('cookieStoreExample', ['ngCookies'])
|
147
|
+
* .controller('ExampleController', ['$cookieStore', function($cookieStore) {
|
148
|
+
* // Put cookie
|
149
|
+
* $cookieStore.put('myFavorite','oatmeal');
|
150
|
+
* // Get cookie
|
151
|
+
* var favoriteCookie = $cookieStore.get('myFavorite');
|
152
|
+
* // Removing a cookie
|
153
|
+
* $cookieStore.remove('myFavorite');
|
154
|
+
* }]);
|
155
|
+
* ```
|
156
|
+
*/
|
157
|
+
factory('$cookieStore', ['$cookies', function($cookies) {
|
158
|
+
|
159
|
+
return {
|
160
|
+
/**
|
161
|
+
* @ngdoc method
|
162
|
+
* @name $cookieStore#get
|
163
|
+
*
|
164
|
+
* @description
|
165
|
+
* Returns the value of given cookie key
|
166
|
+
*
|
167
|
+
* @param {string} key Id to use for lookup.
|
168
|
+
* @returns {Object} Deserialized cookie value.
|
169
|
+
*/
|
170
|
+
get: function(key) {
|
171
|
+
var value = $cookies[key];
|
172
|
+
return value ? angular.fromJson(value) : value;
|
173
|
+
},
|
174
|
+
|
175
|
+
/**
|
176
|
+
* @ngdoc method
|
177
|
+
* @name $cookieStore#put
|
178
|
+
*
|
179
|
+
* @description
|
180
|
+
* Sets a value for given cookie key
|
181
|
+
*
|
182
|
+
* @param {string} key Id for the `value`.
|
183
|
+
* @param {Object} value Value to be stored.
|
184
|
+
*/
|
185
|
+
put: function(key, value) {
|
186
|
+
$cookies[key] = angular.toJson(value);
|
187
|
+
},
|
188
|
+
|
189
|
+
/**
|
190
|
+
* @ngdoc method
|
191
|
+
* @name $cookieStore#remove
|
192
|
+
*
|
193
|
+
* @description
|
194
|
+
* Remove given cookie
|
195
|
+
*
|
196
|
+
* @param {string} key Id of the key-value pair to delete.
|
197
|
+
*/
|
198
|
+
remove: function(key) {
|
199
|
+
delete $cookies[key];
|
200
|
+
}
|
201
|
+
};
|
202
|
+
|
203
|
+
}]);
|
204
|
+
|
205
|
+
|
206
|
+
})(window, window.angular);
|