Sha256: afff4a7ac71d52e996df649dfbc78a856d0392493216b8442432a425f5915554
Contents?: true
Size: 1.52 KB
Versions: 12
Compression:
Stored size: 1.52 KB
Contents
if (!RedactorPlugins) var RedactorPlugins = {}; RedactorPlugins.filemanager = function() { return { init: function() { if (!this.opts.fileManagerJson) return; this.modal.addCallback('file', this.filemanager.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-file-upload-box').addClass('redactor-tab redactor-tab1'); var $box = $('<div id="redactor-file-manager-box" style="overflow: auto; height: 300px;" class="redactor-tab redactor-tab2">').hide(); $modal.append($box); $.ajax({ dataType: "json", cache: false, url: this.opts.fileManagerJson, success: $.proxy(function(data) { var ul = $('<ul id="redactor-modal-list">'); $.each(data, $.proxy(function(key, val) { var a = $('<a href="#" title="' + val.title + '" rel="' + val.link + '">' + val.title + ' <span style="font-size: 11px; color: #888;">' + val.name + '</span> <span style="position: absolute; right: 10px; font-size: 11px; color: #888;">(' + val.size + ')</span></a>'); var li = $('<li />'); a.on('click', $.proxy(this.filemanager.insert, this)); li.append(a); ul.append(li); }, this)); $('#redactor-file-manager-box').append(ul); }, this) }); }, insert: function(e) { e.preventDefault(); this.file.insert('<a href="' + $(e.target).attr('rel') + '">' + $(e.target).attr('title') + '</a>'); } }; };
Version data entries
12 entries across 12 versions & 1 rubygems