docs
This commit is contained in:
+8
-6
@@ -974,12 +974,14 @@ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\
|
|||||||
$(document).on('click', '.notifyjs-gswg-base button', function() {
|
$(document).on('click', '.notifyjs-gswg-base button', function() {
|
||||||
return $(this).trigger('notify-hide');
|
return $(this).trigger('notify-hide');
|
||||||
});
|
});
|
||||||
return $.notify("http://gswg.io", {
|
return setTimeout(function() {
|
||||||
position: 'b r',
|
return $.notify("http://gswg.io", {
|
||||||
style: 'gswg',
|
position: 'b r',
|
||||||
autoHide: false,
|
style: 'gswg',
|
||||||
clickToHide: false
|
autoHide: false,
|
||||||
});
|
clickToHide: false
|
||||||
|
});
|
||||||
|
}, 15 * 1000);
|
||||||
};
|
};
|
||||||
|
|
||||||
App = App || {};
|
App = App || {};
|
||||||
|
|||||||
@@ -59,7 +59,10 @@ App.codeRunner = ->
|
|||||||
$(document).on 'click', '.notifyjs-gswg-base button', ->
|
$(document).on 'click', '.notifyjs-gswg-base button', ->
|
||||||
$(this).trigger('notify-hide')
|
$(this).trigger('notify-hide')
|
||||||
|
|
||||||
$.notify("http://gswg.io", {position:'b r', style: 'gswg', autoHide: false, clickToHide: false})
|
setTimeout ->
|
||||||
|
$.notify("http://gswg.io", {position:'b r', style: 'gswg', autoHide: false, clickToHide: false})
|
||||||
|
, 15*1000
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user