Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save drzippie/97832f8ba9c76df10cac to your computer and use it in GitHub Desktop.

Select an option

Save drzippie/97832f8ba9c76df10cac to your computer and use it in GitHub Desktop.
# https://bugs.jqueryui.com/ticket/4186
# works for "jquery-ui": "~1.11.4"
# to enable change aspectRatio before created
(($) ->
oldfunc = $.ui.resizable.prototype._setOption
$.ui.resizable.prototype._setOption = (key, value) ->
oldfunc.apply @, arguments
if key is "aspectRatio"
@_aspectRatio = !!value
return
) jQuery
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment