Sha256: 44a9b8dc6692db0b9f95d13185f12ab213838efa9428ca061bd0dfff99231421
Contents?: true
Size: 479 Bytes
Versions: 6
Compression:
Stored size: 479 Bytes
Contents
$(document).ready -> $('td.localization_row[data-editing=0]').on 'click', -> $this = $(this) unless parseInt($this.data('editing')) $this.data('editing', '1') $.get $this.data('edit') $('td.localization_row').on 'click', 'form button.cancel', (e)-> $this = $(this) if $this[0].localName=='button' $this = $this.parents('td.localization_row') $this.data('editing', 0) $this.html $this.data('content') e.preventDefault() false
Version data entries
6 entries across 6 versions & 1 rubygems