2439887fbad3295bdf00fa79423e09cf7d10036b.svn-base 272 B

12345678910
  1. $(function () {
  2. window.utils = window.utils || {};
  3. $.extend(window.utils, {
  4. dialog: {
  5. confirm: function (message, title, handle) {
  6. DevExpress.ui.dialog.confirm(message, title).then(handle);
  7. }
  8. }
  9. });
  10. });