mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 09:35:00 +00:00
propperly set timeout of noty message if not passed
This commit is contained in:
parent
b59d414adb
commit
9b1faa429f
|
@ -674,7 +674,7 @@ $(document).ready(function() {
|
|||
dismissQueue: true,
|
||||
layout: 'topRight',
|
||||
theme: 'defaultTheme',
|
||||
timeout: (timeout == 'undefined' ? 1500 : timeout),
|
||||
timeout: (typeof timeout == 'undefined' ? 1500 : timeout),
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user