All Downloads are FREE. Search and download functionalities are using the official Maven repository.

activiti.editor-app.libs.angular-translate-storage-cookie.angular-translate-storage-cookie.js Maven / Gradle / Ivy

The newest version!
/*!
 * angular-translate - v2.4.2 - 2014-10-21
 * http://github.com/angular-translate/angular-translate
 * Copyright (c) 2014 ; Licensed MIT
 */
angular.module('pascalprecht.translate').factory('$translateCookieStorage', [
  '$cookieStore',
  function ($cookieStore) {
    var $translateCookieStorage = {
        get: function (name) {
          return $cookieStore.get(name);
        },
        set: function (name, value) {
          $cookieStore.put(name, value);
        }
      };
    return $translateCookieStorage;
  }
]);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy