angular-cookies
Advanced tools
Comparing version 1.5.8 to 1.5.9
/** | ||
* @license AngularJS v1.5.8 | ||
* @license AngularJS v1.5.9 | ||
* (c) 2010-2016 Google, Inc. http://angularjs.org | ||
@@ -31,3 +31,3 @@ * License: MIT | ||
* */ | ||
provider('$cookies', [function $CookiesProvider() { | ||
provider('$cookies', [/** @this */function $CookiesProvider() { | ||
/** | ||
@@ -303,5 +303,5 @@ * @ngdoc property | ||
if (cookieLength > 4096) { | ||
$log.warn("Cookie '" + name + | ||
"' possibly not set or overflowed because it was too large (" + | ||
cookieLength + " > 4096 bytes)!"); | ||
$log.warn('Cookie \'' + name + | ||
'\' possibly not set or overflowed because it was too large (' + | ||
cookieLength + ' > 4096 bytes)!'); | ||
} | ||
@@ -319,3 +319,3 @@ | ||
angular.module('ngCookies').provider('$$cookieWriter', function $$CookieWriterProvider() { | ||
angular.module('ngCookies').provider('$$cookieWriter', /** @this */ function $$CookieWriterProvider() { | ||
this.$get = $$CookieWriter; | ||
@@ -322,0 +322,0 @@ }); |
/* | ||
AngularJS v1.5.8 | ||
AngularJS v1.5.9 | ||
(c) 2010-2016 Google, Inc. http://angularjs.org | ||
@@ -4,0 +4,0 @@ License: MIT |
{ | ||
"name": "angular-cookies", | ||
"version": "1.5.8", | ||
"version": "1.5.9", | ||
"license": "MIT", | ||
@@ -8,4 +8,4 @@ "main": "./angular-cookies.js", | ||
"dependencies": { | ||
"angular": "1.5.8" | ||
"angular": "1.5.9" | ||
} | ||
} |
{ | ||
"name": "angular-cookies", | ||
"version": "1.5.8", | ||
"version": "1.5.9", | ||
"description": "AngularJS module for cookies", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18644