Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHo3ein <ho3ein.sanaei@gmail.com>2023-05-08 19:10:02 +0300
committerGitHub <noreply@github.com>2023-05-08 19:10:02 +0300
commit30a5f66f26164e1bcbdf9a0780a40bc56230e73c (patch)
tree749ce90b0895352639d2c45fa176a362b3105b32 /web/assets/js/util/common.js
parent7bb3e517b2e279a52fb5627e011ea03fd91f648e (diff)
parentbb6e6861ca683894139c5307bd2d41f2e264fe00 (diff)
Merge pull request #381 from hamid-gh98/main
[FIX] bug logout path + [UPDATE] login UI and more ...
Diffstat (limited to 'web/assets/js/util/common.js')
-rw-r--r--web/assets/js/util/common.js41
1 files changed, 32 insertions, 9 deletions
diff --git a/web/assets/js/util/common.js b/web/assets/js/util/common.js
index b3ebc0bd..808b1ba9 100644
--- a/web/assets/js/util/common.js
+++ b/web/assets/js/util/common.js
@@ -56,14 +56,37 @@ function toFixed(num, n) {
return Math.round(num * n) / n;
}
-function debounce (fn, delay) {
- var timeoutID = null
+function debounce(fn, delay) {
+ var timeoutID = null;
return function () {
- clearTimeout(timeoutID)
- var args = arguments
- var that = this
- timeoutID = setTimeout(function () {
- fn.apply(that, args)
- }, delay)
+ clearTimeout(timeoutID);
+ var args = arguments;
+ var that = this;
+ timeoutID = setTimeout(function () {
+ fn.apply(that, args);
+ }, delay);
+ };
+}
+
+function getCookie(cname) {
+ let name = cname + '=';
+ let decodedCookie = decodeURIComponent(document.cookie);
+ let ca = decodedCookie.split(';');
+ for (let i = 0; i < ca.length; i++) {
+ let c = ca[i];
+ while (c.charAt(0) == ' ') {
+ c = c.substring(1);
+ }
+ if (c.indexOf(name) == 0) {
+ return c.substring(name.length, c.length);
+ }
}
- } \ No newline at end of file
+ return '';
+}
+
+function setCookie(cname, cvalue, exdays) {
+ const d = new Date();
+ d.setTime(d.getTime() + exdays * 24 * 60 * 60 * 1000);
+ let expires = 'expires=' + d.toUTCString();
+ document.cookie = cname + '=' + cvalue + ';' + expires + ';path=/';
+}