mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
a96a9f38ce
* #108 Add eslint-config-spt * #108 Ignore bundle.js file * #108 Change eslint ignore path to a glob file * Remove jshint and follow more of eslint rules
35 lines
812 B
JavaScript
35 lines
812 B
JavaScript
var _username;
|
|
|
|
// Ref: http://stackoverflow.com/questions/10730362/get-cookie-by-name
|
|
function readCookie(name) {
|
|
var nameEQ = name + "=";
|
|
var ca = document.cookie.split(';');
|
|
for (var i=0;i < ca.length;i++) {
|
|
var c = ca[i];
|
|
while (c.charAt(0)==' ') {
|
|
c = c.substring(1, c.length);
|
|
}
|
|
if (c.indexOf(nameEQ) === 0) {
|
|
return c.substring(nameEQ.length, c.length);
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
var UserStore = {
|
|
init: function init() {
|
|
_username = readCookie("username");
|
|
},
|
|
|
|
set: function set(username) {
|
|
_username=username;
|
|
document.cookie="username="+_username+"; expires=Thu, 18 Dec 2099 12:00:00 UTC";
|
|
},
|
|
|
|
get: function get() {
|
|
return _username;
|
|
}
|
|
};
|
|
|
|
module.exports = UserStore;
|