Sha256: ab00c2c4db12bacfac408c026f9e064e922d7f8e982d8fce785ba908593fcf78
Contents?: true
Size: 555 Bytes
Versions: 4
Compression:
Stored size: 555 Bytes
Contents
(function($) { var DropzoneRailsManager = Class.extend({ // variables handlers: [], init: function(options) { var self = this; this.handlers = []; $(".dropzone-ui").each(function() { self.handlers.push(new DropzoneRails.Handler($(this), options)); }); } }); // register namespace $.extend(true, window, { "DropzoneRails": { "Manager": DropzoneRailsManager } }); })(jQuery);
Version data entries
4 entries across 4 versions & 1 rubygems