Sha256: c9b40ba5d11ec054f4c252d852ab147d85c1188c65ecd068c6c324930c4da26b
Contents?: true
Size: 529 Bytes
Versions: 9
Compression:
Stored size: 529 Bytes
Contents
/*! * 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; } ]);
Version data entries
9 entries across 9 versions & 1 rubygems