/*! * 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"});