12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
|
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
|
||
|
|
||
|
function back() {
|
||
|
if (document.referrer !== ' ' || document.referrer !== '') {
|
||
|
window.location.href=document.referrer;
|
||
|
} else {
|
||
|
window.location.href='/';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// @license-end
|