Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
angular-translate-storage-local
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Custom Issue Tracker
Custom Issue Tracker
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angularjs
angular-translate-storage-local
Commits
266ce040
Commit
266ce040
authored
Mar 21, 2021
by
bingchuan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[dev] version 2.18.4
parent
db54ffc9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
91 additions
and
91 deletions
+91
-91
angular-translate-storage-local.js
angular-translate-storage-local.js
+91
-91
No files found.
angular-translate-storage-local.js
View file @
266ce040
/*!
/*!
* angular-translate - v2.1
3.1 - 2016-12-06
* angular-translate - v2.1
8.4 - 2021-01-14
*
*
* Copyright (c) 20
16
The angular-translate team, Pascal Precht; Licensed MIT
* Copyright (c) 20
21
The angular-translate team, Pascal Precht; Licensed MIT
*/
*/
(
function
(
root
,
factory
)
{
(
function
(
root
,
factory
)
{
if
(
typeof
define
===
'function'
&&
define
.
amd
)
{
if
(
typeof
define
===
'function'
&&
define
.
amd
)
{
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
define
([],
function
()
{
define
([],
function
()
{
return
(
factory
());
return
(
factory
());
});
});
}
else
if
(
typeof
exports
===
'object'
)
{
}
else
if
(
typeof
module
===
'object'
&&
module
.
exports
)
{
// Node. Does not work with strict CommonJS, but
// Node. Does not work with strict CommonJS, but
// only CommonJS-like environments that support module.exports,
// only CommonJS-like environments that support module.exports,
// like Node.
// like Node.
...
@@ -19,10 +19,10 @@
...
@@ -19,10 +19,10 @@
}
}
}(
this
,
function
()
{
}(
this
,
function
()
{
$translateLocalStorageFactory
.
$inject
=
[
'$window'
,
'$translateCookieStorage'
];
$translateLocalStorageFactory
.
$inject
=
[
'$window'
,
'$translateCookieStorage'
];
angular
.
module
(
'pascalprecht.translate'
)
angular
.
module
(
'pascalprecht.translate'
)
/**
/**
* @ngdoc object
* @ngdoc object
* @name pascalprecht.translate.$translateLocalStorage
* @name pascalprecht.translate.$translateLocalStorage
* @requires $window
* @requires $window
...
@@ -33,9 +33,9 @@ angular.module('pascalprecht.translate')
...
@@ -33,9 +33,9 @@ angular.module('pascalprecht.translate')
* to use localStorage as storage.
* to use localStorage as storage.
*
*
*/
*/
.
factory
(
'$translateLocalStorage'
,
$translateLocalStorageFactory
);
.
factory
(
'$translateLocalStorage'
,
$translateLocalStorageFactory
);
function
$translateLocalStorageFactory
(
$window
,
$translateCookieStorage
)
{
function
$translateLocalStorageFactory
(
$window
,
$translateCookieStorage
)
{
'use strict'
;
'use strict'
;
...
@@ -115,9 +115,9 @@ function $translateLocalStorageFactory($window, $translateCookieStorage) {
...
@@ -115,9 +115,9 @@ function $translateLocalStorageFactory($window, $translateCookieStorage) {
}
}
var
$translateLocalStorage
=
hasLocalStorageSupport
?
localStorageAdapter
:
$translateCookieStorage
;
var
$translateLocalStorage
=
hasLocalStorageSupport
?
localStorageAdapter
:
$translateCookieStorage
;
return
$translateLocalStorage
;
return
$translateLocalStorage
;
}
}
$translateLocalStorageFactory
.
displayName
=
'$translateLocalStorageFactory'
;
$translateLocalStorageFactory
.
displayName
=
'$translateLocalStorageFactory'
;
return
'pascalprecht.translate'
;
return
'pascalprecht.translate'
;
}));
}));
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment