mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-09-23 22:20:31 +00:00
(js/css) Update generated files
This commit is contained in:
+14
-6
@@ -1,5 +1,5 @@
|
||||
/**
|
||||
* @license AngularJS v1.5.9
|
||||
* @license AngularJS v1.5.10
|
||||
* (c) 2010-2016 Google, Inc. http://angularjs.org
|
||||
* License: MIT
|
||||
*/
|
||||
@@ -51,6 +51,16 @@ angular.module('ngCookies', ['ng']).
|
||||
* Note: By default, the address that appears in your `<base>` tag will be used as the path.
|
||||
* This is important so that cookies will be visible for all routes when html5mode is enabled.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* ```js
|
||||
* angular.module('cookiesProviderExample', ['ngCookies'])
|
||||
* .config(['$cookiesProvider', function($cookiesProvider) {
|
||||
* // Setting default options
|
||||
* $cookiesProvider.defaults.domain = 'foo.com';
|
||||
* $cookiesProvider.defaults.secure = true;
|
||||
* }]);
|
||||
* ```
|
||||
**/
|
||||
var defaults = this.defaults = {};
|
||||
|
||||
@@ -184,6 +194,9 @@ angular.module('ngCookies').
|
||||
* @ngdoc service
|
||||
* @name $cookieStore
|
||||
* @deprecated
|
||||
* sinceVersion="v1.4.0"
|
||||
* Please use the {@link ngCookies.$cookies `$cookies`} service instead.
|
||||
*
|
||||
* @requires $cookies
|
||||
*
|
||||
* @description
|
||||
@@ -193,11 +206,6 @@ angular.module('ngCookies').
|
||||
*
|
||||
* Requires the {@link ngCookies `ngCookies`} module to be installed.
|
||||
*
|
||||
* <div class="alert alert-danger">
|
||||
* **Note:** The $cookieStore service is **deprecated**.
|
||||
* Please use the {@link ngCookies.$cookies `$cookies`} service instead.
|
||||
* </div>
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* ```js
|
||||
|
||||
Reference in New Issue
Block a user