SHOW:
|
|
- or go back to the newest paste.
1 | function removeElements(circuitid) { | |
2 | $.notify('Libero porta e cpe di ' + circuitid, | |
3 | { | |
4 | className: "success", | |
5 | globalPosition: "top center", | |
6 | autoHide: false | |
7 | } | |
8 | ); | |
9 | setTimeout( | |
10 | function () { | |
11 | $('.notifyjs-wrapper').trigger('notify-hide'); | |
12 | $.notify('Circuito ' + circuitid + ' liberato', | |
13 | { | |
14 | className: "success", | |
15 | globalPosition: "top center", | |
16 | autoHideDelay: 100 | |
17 | } | |
18 | ); | |
19 | } | |
20 | , 2000); | |
21 | ||
22 | location.reload(true); return false; | |
23 | } |