Advertisement
kromm77

Confirm with Notify.Js

Apr 23rd, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  $.notify.addStyle('confirm', {
  2.                     html:
  3.                         "<div>" +
  4.                         "<div class='confirm_base'>" +
  5.                         "<div class='circuitid' data-notify-text='circuitid' />" +
  6.                         "<div class='title' data-notify-html='title'/>" +
  7.                         "<div class='buttons'>" +
  8.                         "<button class='no'>Cancel</button>" +
  9.                         "<button class='yes' data-notify-text='button'></button>" +
  10.                         "</div>" +
  11.                         "</div>" +
  12.                         "</div>",
  13.                     classes: {
  14.                         base: {
  15.                             "background-color": "#b6ff00"
  16.                         }
  17.                     }
  18.                 });
  19.  
  20.  
  21. $(document).on('click', '.notifyjs-confirm-base .no', function () {
  22.  //programmatically trigger propogating hide event
  23.  $(this).trigger('notify-hide');
  24. });
  25. $(document).on('click', '.notifyjs-confirm-base .yes', function () {
  26.     //show button text
  27.     $(this).trigger('notify-hide');
  28.     action(circuitid);
  29. });
  30. $.notify({
  31.     title: msg,
  32.     button: "Confermo",
  33.     circuitid: circuitid,
  34. }, {
  35.         className: "info",
  36.         style: 'confirm',
  37.         autoHide: false,
  38.         clickToHide: true,
  39.         globalPosition: "top center"
  40.     }
  41. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement