PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
← All changes | assets/src/js/admin/admin.js +3 -1 4.4.44.4.8 View file →
@@ -1,6 +1,7 @@
1 1 import { initElsTomSelect, searchUserOnListPost } from './init-tom-select.js';
2 2 import { AdminUtilsFunctions, Api, Utils } from './utils-admin.js';
3 +import { DropdownPages } from './share/dropdown-pages.js';
3 4
4 5 ( function( $ ) {
5 6 /**
6 7 * Callback event for button to creating pages inside error message.
@@ -144,9 +145,10 @@
144 145
145 146 const onReady = function onReady() {
146 147 lpMetaboxFileInput();
147 148 //updateDb();
148 - $( '.learn-press-dropdown-pages' ).LP( 'DropdownPages' );
149 + const dropdownPages = new DropdownPages();
150 + dropdownPages.init();
149 151 //$( '.learn-press-advertisement-slider' ).LP( 'Advertisement', 'a', 's' ).appendTo( $( '#wpbody-content' ) );
150 152 //$( '.learn-press-toggle-item-preview' ).on( 'change', updateItemPreview );
151 153 $( '.learn-press-tip' ).LP( 'QuickTip' ); //$('.learn-press-tabs').LP('AdminTab');
152 154