Created
December 5, 2013 08:54
-
-
Save aar0nTw/7802183 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
edit_area_click = (evt, callback) -> | |
$el = $(evt.currentTarget) | |
tg = $("##{$el.data('target')}") | |
tg.redactor('destroy') | |
$el.parents().find(".overlay").show() | |
$el.parents().hide() | |
$('.overlay').attr 'style', '' | |
callback(tg) | |
$('.edit-area a.cancel-btn').on 'click', (evt)-> | |
evt.preventDefault() | |
edit_area_click.call @, evt, (tg) -> | |
tg.html(tg.data('original-html')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment