PluginProbe
Filter Everything — WordPress & WooCommerce Filters / 1.9.7
Filter Everything — WordPress & WooCommerce Filters v1.9.7
1.9.7 1.9.6 1.9.5 1.9.4 1.9.3 1.9.2.2 1.9.2.1 trunk 1.2.1 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 1.4.1 1.4.4 1.4.5 1.4.8 1.4.9 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 All 52 releases
← All changes | assets/js/wpc-widgets.js +11 -2 1.6.11.9.7 View file →
@@ -1,6 +1,6 @@
1 1 /*!
2 - * Filter Everything seo rules admin 1.6.1
2 + * Filter Everything widgets 1.9.7
3 3 */
4 4 (function($) {
5 5 "use strict";
6 6
@@ -67,8 +67,17 @@
67 67 });
68 68
69 69 $(document).on('widget-added widget-updated', function (){
70 70 wpcMakeSortItemsSortable();
71 +
72 + $('.wpc-help-tip').tipTip({
73 + 'attribute': 'data-tip',
74 + 'fadeIn': 50,
75 + 'fadeOut': 50,
76 + 'delay': 200,
77 + 'keepAlive': true,
78 + 'maxWidth': "220px",
79 + });
71 80 });
72 81
73 82 $(document).on('focus', '.wpc-sorting-item-label', function (){
74 83 let currentVal = $(this).val();
@@ -78,9 +87,9 @@
78 87 });
79 88
80 89 $(document).on('click', '.wpc-add-sorting-item', function (e){
81 90 e.preventDefault();
82 - let widgetContent = $(this).parents('.widget-content');
91 + let widgetContent = $(this).parents('.wpc-add-sorting-item-wrapper').parent(); //('.widget-content');
83 92 let sortingList = widgetContent.find('.wpc-sorting-list');
84 93 let html = widgetContent.find('.wpc-new-sorting-item').html();
85 94 let $el = $(html);
86 95 let label = $el.find('.wpc-sorting-item-title');