diff options
Diffstat (limited to 'www/lib/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js')
| -rw-r--r-- | www/lib/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/www/lib/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js b/www/lib/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js new file mode 100644 index 00000000..4198c551 --- /dev/null +++ b/www/lib/angular-translate-storage-cookie/angular-translate-storage-cookie.min.js @@ -0,0 +1,47 @@ +/*! + * angular-translate - v2.11.0 - 2016-03-20 + * + * Copyright (c) 2016 The angular-translate team, Pascal Precht; Licensed MIT + */ +!function(a,b){"function"==typeof define&&define.amd? +// AMD. Register as an anonymous module unless amdModuleId is set +define([],function(){return b()}):"object"==typeof exports? +// Node. Does not work with strict CommonJS, but +// only CommonJS-like environments that support module.exports, +// like Node. +module.exports=b():b()}(this,function(){function a(a){"use strict";var b={/** + * @ngdoc function + * @name pascalprecht.translate.$translateCookieStorage#get + * @methodOf pascalprecht.translate.$translateCookieStorage + * + * @description + * Returns an item from cookieStorage by given name. + * + * @param {string} name Item name + * @return {string} Value of item name + */ +get:function(b){return a.get(b)},/** + * @ngdoc function + * @name pascalprecht.translate.$translateCookieStorage#set + * @methodOf pascalprecht.translate.$translateCookieStorage + * + * @description + * Sets an item in cookieStorage by given name. + * + * @deprecated use #put + * + * @param {string} name Item name + * @param {string} value Item value + */ +set:function(b,c){a.put(b,c)},/** + * @ngdoc function + * @name pascalprecht.translate.$translateCookieStorage#put + * @methodOf pascalprecht.translate.$translateCookieStorage + * + * @description + * Sets an item in cookieStorage by given name. + * + * @param {string} name Item name + * @param {string} value Item value + */ +put:function(b,c){a.put(b,c)}};return b}return a.$inject=["$cookieStore"],angular.module("pascalprecht.translate").factory("$translateCookieStorage",a),a.displayName="$translateCookieStorage","pascalprecht.translate"});
\ No newline at end of file |
