Sha256: 06197e6bd29a13e9a4f160bdab3aafe55cbc66a6fd8a690c71293376bf3f3c3d
Contents?: true
Size: 482 Bytes
Versions: 24
Compression:
Stored size: 482 Bytes
Contents
FORGE.features.compact_form = { // show the loading img in the specified div init: function (div) { var $form = $('#form'), that; $('.item-list-compact').on('click', '.edit', function(e) { that = this; FORGE.features.loading.show("#form"); $.get(that.href, function(data) { $form.fadeOut(400, function () { $form.html(data); $form.fadeIn(400); }); }, 'html'); e.preventDefault(); }); } }
Version data entries
24 entries across 24 versions & 1 rubygems