Don't reopen notification on mouse-over while closing
This commit is contained in:
parent
e21ae9fabc
commit
9839f4b9a9
1 changed files with 2 additions and 1 deletions
|
|
@ -51,6 +51,7 @@ $(function() {
|
||||||
//~~ Initialize PNotify
|
//~~ Initialize PNotify
|
||||||
|
|
||||||
PNotify.prototype.options.styling = "bootstrap2";
|
PNotify.prototype.options.styling = "bootstrap2";
|
||||||
|
PNotify.prototype.options.mouse_reset = false;
|
||||||
|
|
||||||
//~~ Initialize view models
|
//~~ Initialize view models
|
||||||
|
|
||||||
|
|
@ -58,7 +59,7 @@ $(function() {
|
||||||
var viewModelMap = {};
|
var viewModelMap = {};
|
||||||
|
|
||||||
// Fix Function#name on browsers that do not support it (IE):
|
// Fix Function#name on browsers that do not support it (IE):
|
||||||
// see: http://stackoverflow.com/questions/6903762/function-name-not-supported-in-ie
|
// see: http://stackoverflow.com/questions/6903762/function-name-not-supported-in-ie
|
||||||
if (!(function f() {}).name) {
|
if (!(function f() {}).name) {
|
||||||
Object.defineProperty(Function.prototype, 'name', {
|
Object.defineProperty(Function.prototype, 'name', {
|
||||||
get: function() {
|
get: function() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue