Добавлена точка с запятой как вариант решения проблемы со сжатием кода
This commit is contained in:
parent
d8a1284cc5
commit
ac48e8e064
|
@ -19,7 +19,7 @@ function identification() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function authentication(form) {
|
function authentication(form) {
|
||||||
if (form == undefined) {
|
if (form == undefined) {
|
||||||
|
@ -69,7 +69,7 @@ function authentication(form) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function deauthentication() {
|
function deauthentication() {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
@ -99,7 +99,7 @@ function deauthentication() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
function registration(form) {
|
function registration(form) {
|
||||||
if (form == undefined) {
|
if (form == undefined) {
|
||||||
|
@ -150,6 +150,6 @@ function registration(form) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
||||||
|
|
||||||
document.addEventListener('DOMContentLoaded', identification(), true);
|
document.addEventListener('DOMContentLoaded', identification(), true);
|
|
@ -45,7 +45,7 @@ function page_main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
};
|
||||||
|
|
||||||
function page_profile() {
|
function page_profile() {
|
||||||
url = '/profile'
|
url = '/profile'
|
||||||
|
@ -91,7 +91,7 @@ function page_profile() {
|
||||||
});
|
});
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
};
|
||||||
|
|
||||||
// $('#profile_button').on('show.bs.dropdown', function () {
|
// $('#profile_button').on('show.bs.dropdown', function () {
|
||||||
// alert('Пизда');
|
// alert('Пизда');
|
||||||
|
|
|
@ -32,4 +32,4 @@ function supply_import(form) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
};
|
|
@ -20,4 +20,4 @@ function reinitialization() {
|
||||||
document.getElementsByTagName("body")[0].appendChild(new_script);
|
document.getElementsByTagName("body")[0].appendChild(new_script);
|
||||||
script.remove();
|
script.remove();
|
||||||
}
|
}
|
||||||
}
|
};
|
Reference in New Issue