first commit
This commit is contained in:
19
public/component/pear/module/context.js
Executable file
19
public/component/pear/module/context.js
Executable file
@ -0,0 +1,19 @@
|
||||
layui.define(['jquery', 'element'], function(exports) {
|
||||
"use strict";
|
||||
|
||||
var MOD_NAME = 'context',
|
||||
$ = layui.jquery,
|
||||
element = layui.element;
|
||||
|
||||
var context = new function() {
|
||||
|
||||
this.put = function(key,value){
|
||||
localStorage.setItem(key,value);
|
||||
}
|
||||
|
||||
this.get = function(key){
|
||||
return localStorage.getItem(key);
|
||||
}
|
||||
}
|
||||
exports(MOD_NAME, context);
|
||||
});
|
Reference in New Issue
Block a user