remove superflous comma

This commit is contained in:
Uwe Steinmann 2021-01-15 10:16:10 +01:00
parent a663f89363
commit b2182362d3
2 changed files with 2 additions and 2 deletions

View File

@ -1258,7 +1258,7 @@ $(document).ready(function() { /* {{{ */
dismissQueue: true,
layout: 'topRight',
theme: 'defaultTheme',
timeout: (typeof timeout == 'undefined' ? 1500 : timeout),
timeout: (typeof timeout == 'undefined' ? 1500 : timeout)
});
});

View File

@ -38,7 +38,7 @@
var defaults = {
onError: function(data) {},
onChange: function(data) {},
onChange: function(data) {}
};
var opts = $.extend(defaults, options);