Sha256: 9e0fda0ac6ae4258fe53c5e91e7340bd557446ac1456e19b7ab880c721d1fb54
Contents?: true
Size: 493 Bytes
Versions: 20
Compression:
Stored size: 493 Bytes
Contents
$(function() { var log = function(text) { $('<p/>', {text: text}).appendTo('#console'); }; ['Added', 'Removed'].forEach(function(action) { $(document).on('nested:field' + action, function(e) { log(action + ' some field') }); $(document).on('nested:field' + action + ':tasks', function(e) { log(action + ' task field') }); $(document).on('nested:field' + action + ':milestones', function(e) { log(action + ' milestone field') }); }); });
Version data entries
20 entries across 20 versions & 3 rubygems