@timshel_npm/maildev 3.2.17 → 3.2.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/app/components/angular/angular.js +5537 -3622
- package/dist/app/components/angular/angular.min.js +213 -196
- package/dist/app/components/angular/angular.min.js.map +4 -4
- package/dist/app/components/angular-cookies/angular-cookies.js +183 -179
- package/dist/app/components/angular-cookies/angular-cookies.min.js +5 -5
- package/dist/app/components/angular-cookies/angular-cookies.min.js.map +7 -7
- package/dist/app/components/angular-resource/angular-resource.js +129 -48
- package/dist/app/components/angular-resource/angular-resource.min.js +8 -7
- package/dist/app/components/angular-resource/angular-resource.min.js.map +3 -3
- package/dist/app/components/angular-route/angular-route.js +246 -216
- package/dist/app/components/angular-route/angular-route.min.js +9 -9
- package/dist/app/components/angular-route/angular-route.min.js.map +2 -2
- package/dist/app/components/angular-sanitize/angular-sanitize.js +122 -90
- package/dist/app/components/angular-sanitize/angular-sanitize.min.js +10 -9
- package/dist/app/components/angular-sanitize/angular-sanitize.min.js.map +3 -3
- package/dist/app/components/socket.io/socket.io.min.js +3 -3
- package/dist/app/index.html +13 -14
- package/dist/app/styles/style.css +998 -37
- package/dist/app/views/item.html +64 -82
- package/package.json +11 -12
- package/dist/app/webfonts/fa-brands-400.eot +0 -0
- package/dist/app/webfonts/fa-brands-400.svg +0 -3717
- package/dist/app/webfonts/fa-brands-400.ttf +0 -0
- package/dist/app/webfonts/fa-brands-400.woff +0 -0
- package/dist/app/webfonts/fa-brands-400.woff2 +0 -0
- package/dist/app/webfonts/fa-regular-400.eot +0 -0
- package/dist/app/webfonts/fa-regular-400.svg +0 -801
- package/dist/app/webfonts/fa-regular-400.ttf +0 -0
- package/dist/app/webfonts/fa-regular-400.woff +0 -0
- package/dist/app/webfonts/fa-regular-400.woff2 +0 -0
- package/dist/app/webfonts/fa-solid-900.eot +0 -0
- package/dist/app/webfonts/fa-solid-900.svg +0 -5028
- package/dist/app/webfonts/fa-solid-900.ttf +0 -0
- package/dist/app/webfonts/fa-solid-900.woff +0 -0
- package/dist/app/webfonts/fa-solid-900.woff2 +0 -0
|
@@ -1,200 +1,204 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license AngularJS v1.2.
|
|
2
|
+
* @license AngularJS v1.2.32
|
|
3
3
|
* (c) 2010-2014 Google, Inc. http://angularjs.org
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
(function(window, angular, undefined) {'use strict';
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
*/
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
angular.module('ngCookies', ['ng']).
|
|
27
|
-
/**
|
|
28
|
-
* @ngdoc object
|
|
29
|
-
* @name ngCookies.$cookies
|
|
30
|
-
* @requires $browser
|
|
31
|
-
*
|
|
32
|
-
* @description
|
|
33
|
-
* Provides read/write access to browser's cookies.
|
|
34
|
-
*
|
|
35
|
-
* Only a simple Object is exposed and by adding or removing properties to/from
|
|
36
|
-
* this object, new cookies are created/deleted at the end of current $eval.
|
|
37
|
-
*
|
|
38
|
-
* Requires the {@link ngCookies `ngCookies`} module to be installed.
|
|
39
|
-
*
|
|
40
|
-
* @example
|
|
41
|
-
<doc:example>
|
|
42
|
-
<doc:source>
|
|
43
|
-
<script>
|
|
44
|
-
function ExampleController($cookies) {
|
|
45
|
-
// Retrieving a cookie
|
|
46
|
-
var favoriteCookie = $cookies.myFavorite;
|
|
47
|
-
// Setting a cookie
|
|
48
|
-
$cookies.myFavorite = 'oatmeal';
|
|
49
|
-
}
|
|
50
|
-
</script>
|
|
51
|
-
</doc:source>
|
|
52
|
-
</doc:example>
|
|
53
|
-
*/
|
|
54
|
-
factory('$cookies', ['$rootScope', '$browser', function ($rootScope, $browser) {
|
|
55
|
-
var cookies = {},
|
|
56
|
-
lastCookies = {},
|
|
57
|
-
lastBrowserCookies,
|
|
58
|
-
runEval = false,
|
|
59
|
-
copy = angular.copy,
|
|
60
|
-
isUndefined = angular.isUndefined;
|
|
61
|
-
|
|
62
|
-
//creates a poller fn that copies all cookies from the $browser to service & inits the service
|
|
63
|
-
$browser.addPollFn(function() {
|
|
64
|
-
var currentCookies = $browser.cookies();
|
|
65
|
-
if (lastBrowserCookies != currentCookies) { //relies on browser.cookies() impl
|
|
66
|
-
lastBrowserCookies = currentCookies;
|
|
67
|
-
copy(currentCookies, lastCookies);
|
|
68
|
-
copy(currentCookies, cookies);
|
|
69
|
-
if (runEval) $rootScope.$apply();
|
|
70
|
-
}
|
|
71
|
-
})();
|
|
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
|
+
*/
|
|
72
23
|
|
|
73
|
-
runEval = true;
|
|
74
24
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
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
|
+
})();
|
|
79
69
|
|
|
80
|
-
|
|
70
|
+
runEval = true;
|
|
81
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);
|
|
82
76
|
|
|
83
|
-
|
|
84
|
-
* Pushes all the cookies from the service to the browser and verifies if all cookies were
|
|
85
|
-
* stored.
|
|
86
|
-
*/
|
|
87
|
-
function push() {
|
|
88
|
-
var name,
|
|
89
|
-
value,
|
|
90
|
-
browserCookies,
|
|
91
|
-
updated;
|
|
92
|
-
|
|
93
|
-
//delete any cookies deleted in $cookies
|
|
94
|
-
for (name in lastCookies) {
|
|
95
|
-
if (isUndefined(cookies[name])) {
|
|
96
|
-
$browser.cookies(name, undefined);
|
|
97
|
-
}
|
|
98
|
-
}
|
|
77
|
+
return cookies;
|
|
99
78
|
|
|
100
|
-
//update all cookies updated in $cookies
|
|
101
|
-
for(name in cookies) {
|
|
102
|
-
value = cookies[name];
|
|
103
|
-
if (!angular.isString(value)) {
|
|
104
|
-
if (angular.isDefined(lastCookies[name])) {
|
|
105
|
-
cookies[name] = lastCookies[name];
|
|
106
|
-
} else {
|
|
107
|
-
delete cookies[name];
|
|
108
|
-
}
|
|
109
|
-
} else if (value !== lastCookies[name]) {
|
|
110
|
-
$browser.cookies(name, value);
|
|
111
|
-
updated = true;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
79
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
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;
|
|
131
124
|
}
|
|
125
|
+
}
|
|
132
126
|
}
|
|
127
|
+
}
|
|
133
128
|
}]).
|
|
134
129
|
|
|
135
130
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
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
|
+
};
|
|
198
202
|
|
|
199
203
|
}]);
|
|
200
204
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*
|
|
2
|
-
AngularJS v1.2.
|
|
2
|
+
AngularJS v1.2.32
|
|
3
3
|
(c) 2010-2014 Google, Inc. http://angularjs.org
|
|
4
4
|
License: MIT
|
|
5
|
-
|
|
6
|
-
(function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(
|
|
7
|
-
|
|
8
|
-
//# sourceMappingURL=angular-cookies.min.js.map
|
|
5
|
+
*/
|
|
6
|
+
(function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(e,b){var c={},g={},h,k=!1,l=f.copy,m=f.isUndefined;b.addPollFn(function(){var a=b.cookies();h!=a&&(h=a,l(a,g),l(a,c),k&&e.$apply())})();k=!0;e.$watch(function(){var a,d,e;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)d=c[a],f.isString(d)||(d=""+d,c[a]=d),d!==g[a]&&(b.cookies(a,d),e=!0);if(e)for(a in d=b.cookies(),c)c[a]!==d[a]&&(m(d[a])?delete c[a]:c[a]=d[a])});return c}]).factory("$cookieStore",
|
|
7
|
+
["$cookies",function(e){return{get:function(b){return(b=e[b])?f.fromJson(b):b},put:function(b,c){e[b]=f.toJson(c)},remove:function(b){delete e[b]}}}])})(window,window.angular);
|
|
8
|
+
//# sourceMappingURL=angular-cookies.min.js.map
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
}
|
|
2
|
+
"version":3,
|
|
3
|
+
"file":"angular-cookies.min.js",
|
|
4
|
+
"lineCount":7,
|
|
5
|
+
"mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CAmBtCD,CAAAE,OAAA,CAAe,WAAf,CAA4B,CAAC,IAAD,CAA5B,CAAAC,QAAA,CA0BW,UA1BX,CA0BuB,CAAC,YAAD,CAAe,UAAf,CAA2B,QAAS,CAACC,CAAD,CAAaC,CAAb,CAAuB,CAAA,IACxEC,EAAU,EAD8D,CAExEC,EAAc,EAF0D,CAGxEC,CAHwE,CAIxEC,EAAU,CAAA,CAJ8D,CAKxEC,EAAOV,CAAAU,KALiE,CAMxEC,EAAcX,CAAAW,YAGlBN,EAAAO,UAAA,CAAmB,QAAQ,EAAG,CAC5B,IAAIC,EAAiBR,CAAAC,QAAA,EACjBE,EAAJ,EAA0BK,CAA1B,GACEL,CAGA,CAHqBK,CAGrB,CAFAH,CAAA,CAAKG,CAAL,CAAqBN,CAArB,CAEA,CADAG,CAAA,CAAKG,CAAL,CAAqBP,CAArB,CACA,CAAIG,CAAJ,EAAaL,CAAAU,OAAA,EAJf,CAF4B,CAA9B,CAAA,EAUAL,EAAA,CAAU,CAAA,CAKVL,EAAAW,OAAA,CASAC,QAAa,EAAG,CAAA,IACVC,CADU,CAEVC,CAFU,CAIVC,CAGJ,KAAKF,CAAL,GAAaV,EAAb,CACMI,CAAA,CAAYL,CAAA,CAAQW,CAAR,CAAZ,CAAJ,EACEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBhB,CAAvB,CAKJ,KAAIgB,CAAJ,GAAYX,EAAZ,CACEY,CAKA,CALQZ,CAAA,CAAQW,CAAR,CAKR,CAJKjB,CAAAoB,SAAA,CAAiBF,CAAjB,CAIL,GAHEA,CACA,CADQ,EACR,CADaA,CACb,CAAAZ,CAAA,CAAQW,CAAR,CAAA,CAAgBC,CAElB,EAAIA,CAAJ,GAAcX,CAAA,CAAYU,CAAZ,CAAd,GACEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBC,CAAvB,CACA,CAAAC,CAAA,CAAU,CAAA,CAFZ,CAOF,IAAIA,CAAJ,CAIE,IAAKF,CAAL,GAFAI,EAEaf,CAFID,CAAAC,QAAA,EAEJA,CAAAA,CAAb,CACMA,CAAA,CAAQW,CAAR,CAAJ,GAAsBI,CAAA,CAAeJ,CAAf,CAAtB,GAEMN,CAAA,CAAYU,CAAA,CAAeJ,CAAf,CAAZ,CAAJ,CACE,OAAOX,CAAA,CAAQW,CAAR,CADT,CAGEX,CAAA,CAAQW,CAAR,CAHF,CAGkBI,CAAA,CAAeJ,CAAf,CALpB,CAhCU,CAThB,CAEA,OAAOX,EA1BqE,CAA3D,CA1BvB,CAAAH,QAAA,CAoIW,cApIX;AAoI2B,CAAC,UAAD,CAAa,QAAQ,CAACmB,CAAD,CAAW,CAErD,MAAO,KAWAC,QAAQ,CAACC,CAAD,CAAM,CAEjB,MAAO,CADHN,CACG,CADKI,CAAA,CAASE,CAAT,CACL,EAAQxB,CAAAyB,SAAA,CAAiBP,CAAjB,CAAR,CAAkCA,CAFxB,CAXd,KA0BAQ,QAAQ,CAACF,CAAD,CAAMN,CAAN,CAAa,CACxBI,CAAA,CAASE,CAAT,CAAA,CAAgBxB,CAAA2B,OAAA,CAAeT,CAAf,CADQ,CA1BrB,QAuCGU,QAAQ,CAACJ,CAAD,CAAM,CACpB,OAAOF,CAAA,CAASE,CAAT,CADa,CAvCjB,CAF8C,CAAhC,CApI3B,CAnBsC,CAArC,CAAA,CAwMEzB,MAxMF,CAwMUA,MAAAC,QAxMV;",
|
|
6
|
+
"sources":["angular-cookies.js"],
|
|
7
|
+
"names":["window","angular","undefined","module","factory","$rootScope","$browser","cookies","lastCookies","lastBrowserCookies","runEval","copy","isUndefined","addPollFn","currentCookies","$apply","$watch","push","name","value","updated","isString","browserCookies","$cookies","get","key","fromJson","put","toJson","remove"]
|
|
8
|
+
}
|