Changeset 2612840
- Timestamp:
- 10/12/2021 07:05:49 AM (4 years ago)
- Location:
- categorify/trunk
- Files:
-
- 3 edited
-
assets/js/core.js (modified) (1 diff)
-
assets/js/filter.js (modified) (5 diffs)
-
categorify.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
categorify/trunk/assets/js/core.js
r2612362 r2612840 612 612 } 613 613 }); 614 }, 300);614 }, 500); 615 615 616 616 }, -
categorify/trunk/assets/js/filter.js
r2611301 r2612840 18 18 this.appendDragger(); 19 19 this.dragItem = jQuery("#categorify-dragger"); 20 //this.dragAndDropMedia();21 20 22 21 jQuery( document ).ajaxComplete(function( event, xhr, settings ) { 23 22 if(settings.data != undefined && settings.data != "" && settings.data.indexOf("action=query-attachments") != -1) { 24 23 self.dragAndDropMedia(); 25 26 24 } 27 25 }); … … 37 35 var self = this, 38 36 textDrag = self.moveOneFile; 39 40 41 37 42 38 43 39 jQuery('.attachments-browser li.attachment').draggable({ … … 89 85 90 86 setTimeout(function(){ 87 88 91 89 jQuery("li.category_item").droppable({ 92 90 accept: ".attachments-browser li.attachment", … … 96 94 }, 97 95 drop: function() { 98 96 99 97 var folderID = jQuery(this).attr('data-id'); 100 98 var IDs = self.getSelectedFiles(); 101 102 //console.log(IDs);103 99 104 100 if(IDs.length){ … … 111 107 } 112 108 }); 113 }, 300);109 }, 500); 114 110 115 111 -
categorify/trunk/categorify.php
r2612362 r2612840 5 5 * Plugin URI: https://frenify.com/project/categorify-media-library-categories/ 6 6 * Description: Organize your WordPress media files in categories via drag and drop. 7 * Version: 1.0. 27 * Version: 1.0.3 8 8 * Author: Frenify 9 9 * Author URI: https://frenify.com/ … … 63 63 64 64 // ... Plugin's main file logic ... 65 define( 'CATEGORIFY_VERSION', '1.0. 2' );65 define( 'CATEGORIFY_VERSION', '1.0.3' ); 66 66 define( 'CATEGORIFY__FILE__', __FILE__ ); 67 67 define( 'CATEGORIFY_TAXONOMY', 'categorify_category' );
Note: See TracChangeset
for help on using the changeset viewer.