general.js 330B

1234567891011
  1. $(document).ready(function(){
  2. // Enable tooltips
  3. $('a[rel="tooltip"]').tooltip();
  4. // Enable confirm on object actions
  5. $("td.actions a[data-confirm]").click(function(e) {
  6. e.preventDefault();
  7. if(confirm($(this).data('confirm'))) { window.location.href = $(this).attr('href'); }
  8. });
  9. });