Sha256: 76e00f5e208820423e79e5558f8e7ad734ffdfdd08e65b0b8ccbf9a790583360
Contents?: true
Size: 1.45 KB
Versions: 52
Compression:
Stored size: 1.45 KB
Contents
if (!RedactorPlugins) var RedactorPlugins = {}; (function($) { RedactorPlugins.imagemanager = function() { return { init: function() { if (!this.opts.imageManagerJson) return; this.modal.addCallback('image', this.imagemanager.load); }, load: function() { var $modal = this.modal.getModal(); this.modal.createTabber($modal); this.modal.addTab(1, 'Upload', 'active'); this.modal.addTab(2, 'Choose'); $('#redactor-modal-image-droparea').addClass('redactor-tab redactor-tab1'); var $box = $('<div id="redactor-image-manager-box" style="overflow: auto; height: 300px;" class="redactor-tab redactor-tab2">').hide(); $modal.append($box); $.ajax({ dataType: "json", cache: false, url: this.opts.imageManagerJson, success: $.proxy(function(data) { $.each(data, $.proxy(function(key, val) { // title var thumbtitle = ''; if (typeof val.title !== 'undefined') thumbtitle = val.title; var img = $('<img src="' + val.thumb + '" rel="' + val.image + '" title="' + thumbtitle + '" style="width: 100px; height: 75px; cursor: pointer;" />'); $('#redactor-image-manager-box').append(img); $(img).click($.proxy(this.imagemanager.insert, this)); }, this)); }, this) }); }, insert: function(e) { this.image.insert('<img src="' + $(e.target).attr('rel') + '" alt="' + $(e.target).attr('title') + '">'); } }; }; })(jQuery);
Version data entries
52 entries across 52 versions & 8 rubygems