@timshel_npm/maildev 3.2.17 → 3.2.19

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.
Files changed (39) hide show
  1. package/README.md +2 -2
  2. package/dist/app/components/angular/angular.js +5537 -3622
  3. package/dist/app/components/angular/angular.min.js +213 -196
  4. package/dist/app/components/angular/angular.min.js.map +4 -4
  5. package/dist/app/components/angular-cookies/angular-cookies.js +183 -179
  6. package/dist/app/components/angular-cookies/angular-cookies.min.js +5 -5
  7. package/dist/app/components/angular-cookies/angular-cookies.min.js.map +7 -7
  8. package/dist/app/components/angular-resource/angular-resource.js +129 -48
  9. package/dist/app/components/angular-resource/angular-resource.min.js +8 -7
  10. package/dist/app/components/angular-resource/angular-resource.min.js.map +3 -3
  11. package/dist/app/components/angular-route/angular-route.js +246 -216
  12. package/dist/app/components/angular-route/angular-route.min.js +9 -9
  13. package/dist/app/components/angular-route/angular-route.min.js.map +2 -2
  14. package/dist/app/components/angular-sanitize/angular-sanitize.js +122 -90
  15. package/dist/app/components/angular-sanitize/angular-sanitize.min.js +10 -9
  16. package/dist/app/components/angular-sanitize/angular-sanitize.min.js.map +3 -3
  17. package/dist/app/components/socket.io/socket.io.min.js +3 -3
  18. package/dist/app/index.html +13 -14
  19. package/dist/app/styles/style.css +998 -37
  20. package/dist/app/views/item.html +64 -82
  21. package/dist/lib/mailserver.d.ts +1 -1
  22. package/dist/lib/mailserver.js +12 -11
  23. package/dist/lib/routes.js +2 -3
  24. package/package.json +15 -17
  25. package/dist/app/webfonts/fa-brands-400.eot +0 -0
  26. package/dist/app/webfonts/fa-brands-400.svg +0 -3717
  27. package/dist/app/webfonts/fa-brands-400.ttf +0 -0
  28. package/dist/app/webfonts/fa-brands-400.woff +0 -0
  29. package/dist/app/webfonts/fa-brands-400.woff2 +0 -0
  30. package/dist/app/webfonts/fa-regular-400.eot +0 -0
  31. package/dist/app/webfonts/fa-regular-400.svg +0 -801
  32. package/dist/app/webfonts/fa-regular-400.ttf +0 -0
  33. package/dist/app/webfonts/fa-regular-400.woff +0 -0
  34. package/dist/app/webfonts/fa-regular-400.woff2 +0 -0
  35. package/dist/app/webfonts/fa-solid-900.eot +0 -0
  36. package/dist/app/webfonts/fa-solid-900.svg +0 -5028
  37. package/dist/app/webfonts/fa-solid-900.ttf +0 -0
  38. package/dist/app/webfonts/fa-solid-900.woff +0 -0
  39. package/dist/app/webfonts/fa-solid-900.woff2 +0 -0
@@ -1,200 +1,204 @@
1
1
  /**
2
- * @license AngularJS v1.2.3
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
- * @ngdoc overview
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
- * {@installModule cookies}
18
- *
19
- * <div doc-module-components="ngCookies"></div>
20
- *
21
- * See {@link ngCookies.$cookies `$cookies`} and
22
- * {@link ngCookies.$cookieStore `$cookieStore`} for usage.
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
- //at the end of each eval, push cookies
76
- //TODO: this should happen before the "delayed" watches fire, because if some cookies are not
77
- // strings or browser refuses to store some cookies, we update the model in the push fn.
78
- $rootScope.$watch(push);
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
- return cookies;
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
- //verify what was actually stored
116
- if (updated){
117
- updated = false;
118
- browserCookies = $browser.cookies();
119
-
120
- for (name in cookies) {
121
- if (cookies[name] !== browserCookies[name]) {
122
- //delete or reset all cookies that the browser dropped from $cookies
123
- if (isUndefined(browserCookies[name])) {
124
- delete cookies[name];
125
- } else {
126
- cookies[name] = browserCookies[name];
127
- }
128
- updated = true;
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
- * @ngdoc object
138
- * @name ngCookies.$cookieStore
139
- * @requires $cookies
140
- *
141
- * @description
142
- * Provides a key-value (string-object) storage, that is backed by session cookies.
143
- * Objects put or retrieved from this storage are automatically serialized or
144
- * deserialized by angular's toJson/fromJson.
145
- *
146
- * Requires the {@link ngCookies `ngCookies`} module to be installed.
147
- *
148
- * @example
149
- */
150
- factory('$cookieStore', ['$cookies', function($cookies) {
151
-
152
- return {
153
- /**
154
- * @ngdoc method
155
- * @name ngCookies.$cookieStore#get
156
- * @methodOf ngCookies.$cookieStore
157
- *
158
- * @description
159
- * Returns the value of given cookie key
160
- *
161
- * @param {string} key Id to use for lookup.
162
- * @returns {Object} Deserialized cookie value.
163
- */
164
- get: function(key) {
165
- var value = $cookies[key];
166
- return value ? angular.fromJson(value) : value;
167
- },
168
-
169
- /**
170
- * @ngdoc method
171
- * @name ngCookies.$cookieStore#put
172
- * @methodOf ngCookies.$cookieStore
173
- *
174
- * @description
175
- * Sets a value for given cookie key
176
- *
177
- * @param {string} key Id for the `value`.
178
- * @param {Object} value Value to be stored.
179
- */
180
- put: function(key, value) {
181
- $cookies[key] = angular.toJson(value);
182
- },
183
-
184
- /**
185
- * @ngdoc method
186
- * @name ngCookies.$cookieStore#remove
187
- * @methodOf ngCookies.$cookieStore
188
- *
189
- * @description
190
- * Remove given cookie
191
- *
192
- * @param {string} key Id of the key-value pair to delete.
193
- */
194
- remove: function(key) {
195
- delete $cookies[key];
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.3
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(d,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&&d.$apply())})();k=!0;d.$watch(function(){var a,e,d;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)(e=c[a],f.isString(e))?e!==g[a]&&(b.cookies(a,e),d=!0):f.isDefined(g[a])?c[a]=g[a]:delete c[a];if(d)for(a in e=b.cookies(),c)c[a]!==e[a]&&(m(e[a])?delete c[a]:c[a]=e[a])});
7
- return c}]).factory("$cookieStore",["$cookies",function(d){return{get:function(b){return(b=d[b])?f.fromJson(b):b},put:function(b,c){d[b]=f.toJson(c)},remove:function(b){delete d[b]}}}])})(window,window.angular);
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
- "version":3,
3
- "file":"angular-cookies.min.js",
4
- "lineCount":7,
5
- "mappings":"A;;;;;aAKC,SAAQ,CAACA,CAAD,CAASC,CAAT,CAAkBC,CAAlB,CAA6B,CAoBtCD,CAAAE,OAAA,CAAe,WAAf,CAA4B,CAAC,IAAD,CAA5B,CAAAC,QAAA,CA4BW,UA5BX,CA4BuB,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,CAEE,CADAY,CACK,CADGZ,CAAA,CAAQW,CAAR,CACH,CAAAjB,CAAAoB,SAAA,CAAiBF,CAAjB,CAAL,EAMWA,CANX,GAMqBX,CAAA,CAAYU,CAAZ,CANrB,GAOEZ,CAAAC,QAAA,CAAiBW,CAAjB,CAAuBC,CAAvB,CACA,CAAAC,CAAA,CAAU,CAAA,CARZ,EACMnB,CAAAqB,UAAA,CAAkBd,CAAA,CAAYU,CAAZ,CAAlB,CAAJ,CACEX,CAAA,CAAQW,CAAR,CADF,CACkBV,CAAA,CAAYU,CAAZ,CADlB,CAGE,OAAOX,CAAA,CAAQW,CAAR,CASb,IAAIE,CAAJ,CAIE,IAAKF,CAAL,GAFAK,EAEahB,CAFID,CAAAC,QAAA,EAEJA,CAAAA,CAAb,CACMA,CAAA,CAAQW,CAAR,CAAJ,GAAsBK,CAAA,CAAeL,CAAf,CAAtB,GAEMN,CAAA,CAAYW,CAAA,CAAeL,CAAf,CAAZ,CAAJ,CACE,OAAOX,CAAA,CAAQW,CAAR,CADT,CAGEX,CAAA,CAAQW,CAAR,CAHF,CAGkBK,CAAA,CAAeL,CAAf,CALpB,CAlCU,CAThB,CAEA;MAAOX,EA1BqE,CAA3D,CA5BvB,CAAAH,QAAA,CA4HW,cA5HX,CA4H2B,CAAC,UAAD,CAAa,QAAQ,CAACoB,CAAD,CAAW,CAErD,MAAO,KAYAC,QAAQ,CAACC,CAAD,CAAM,CAEjB,MAAO,CADHP,CACG,CADKK,CAAA,CAASE,CAAT,CACL,EAAQzB,CAAA0B,SAAA,CAAiBR,CAAjB,CAAR,CAAkCA,CAFxB,CAZd,KA4BAS,QAAQ,CAACF,CAAD,CAAMP,CAAN,CAAa,CACxBK,CAAA,CAASE,CAAT,CAAA,CAAgBzB,CAAA4B,OAAA,CAAeV,CAAf,CADQ,CA5BrB,QA0CGW,QAAQ,CAACJ,CAAD,CAAM,CACpB,OAAOF,CAAA,CAASE,CAAT,CADa,CA1CjB,CAF8C,CAAhC,CA5H3B,CApBsC,CAArC,CAAA,CAoME1B,MApMF,CAoMUA,MAAAC,QApMV;",
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","isDefined","browserCookies","$cookies","get","key","fromJson","put","toJson","remove"]
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
+ }