mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2026-01-04 02:43:48 +00:00
Enhanced Theme: Fixed JS error in Chrome.
This commit is contained in:
@@ -990,7 +990,8 @@ legend {
|
||||
</script>
|
||||
|
||||
<script language="JavaScript" type="text/javascript">
|
||||
function display_message(msg, mood = 'default') {
|
||||
function display_message(msg, mood) {
|
||||
mood = typeof mood !== 'undefined' ? mood : 'default';
|
||||
if (msg != '') {
|
||||
// insert temp div to get width w/o scroll bar
|
||||
var helper_div = $('<div />');
|
||||
|
||||
Reference in New Issue
Block a user