#20 should be fixed but needs testing
This commit is contained in:
parent
bcbe51e9a7
commit
197e6f2f33
11
public/assets/scaffolding-min.js
vendored
11
public/assets/scaffolding-min.js
vendored
@ -144,8 +144,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
remove: function remove(cnane) {
|
remove: function remove(cname) {
|
||||||
setCookie(cname, "", -1);
|
module.exports.cookie.set(cname, "", -1);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
colour: {
|
colour: {
|
||||||
@ -174,9 +174,10 @@ module.exports = {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// getCSS: (el, prop, b = false) {
|
getCSS: function getCSS(el, prop) {
|
||||||
// return window.getComputedStyle(el, null).getPropertyValue(prop);
|
var b = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
||||||
// },
|
return window.getComputedStyle(el, null).getPropertyValue(prop);
|
||||||
|
},
|
||||||
init: function init() {
|
init: function init() {
|
||||||
var args = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
var args = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||||
var url = getURLVars();
|
var url = getURLVars();
|
||||||
|
@ -145,8 +145,8 @@ module.exports = {
|
|||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
remove: (cnane) => {
|
remove: (cname) => {
|
||||||
setCookie(cname, "", -1);
|
module.exports.cookie.set(cname, "", -1);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
colour: {
|
colour: {
|
||||||
|
Loading…
Reference in New Issue
Block a user