PluginProbe
Social Share Buttons / 1.9
Social Share Buttons v1.9
trunk 0.9 1.0 1.1 1.1.1 1.1.2 1.10 1.11 1.12 1.15 1.16 1.17 1.18 1.19 1.2 1.20 1.3 1.30 1.4 1.5 1.6 1.7 1.8 1.9
share-button / js / images.js

images.js in Social Share Buttons 1.9, at js/images.js

16 lines 324 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 // uploader for images
2 "use strict";
3
4 jQuery(document).ready(function($) {
5
6 $(document).on('mbsocial-editor-settings-loaded', function(e)
7 {
8 $('.media_upload').each(function()
9 {
10 var id = $(this).data('upload-id');
11 window.maxFoundry.maxIcons.attachMediaUploader(id);
12 });
13
14 });
15 });
16