Guest User

Untitled

a guest
Aug 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. Extending jQueryUI widgets without conflicts
  2. //Custom dragging
  3. $.ui.dialog.prototype._makeDraggable = function () {}
  4.  
  5. (function($, undefined) {
  6. $.widget('cs.dialog', $.ui.dialog, {
  7. // definition of the widget goes here
  8. });
  9. }(jQuery));
Add Comment
Please, Sign In to add comment