PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / trunk
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses vtrunk
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 4.2.1 All 138 releases
learnpress / assets / src / apps / js / admin / editor / course.js

course.js in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses trunk, at assets/src/apps/js/admin/editor/course.js

25 lines 576 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import HTTP from './http';
2 import CourseStore from './store/course';
3
4 window.$Vue = window.$Vue || Vue;
5 window.$Vuex = window.$Vuex || Vuex;
6
7 const $ = window.jQuery;
8
9 /**
10 * Init app.
11 *
12 * @since 3.0.0
13 */
14 $( document ).ready( function() {
15 window.LP_Curriculum_Store = new $Vuex.Store( CourseStore( lpAdminCourseEditorSettings ) );
16 HTTP( { ns: 'LPCurriculumRequest', store: LP_Curriculum_Store } );
17
18 setTimeout( () => {
19 window.LP_Course_Editor = new $Vue( {
20 el: '#admin-editor-lp_course',
21 template: '<lp-course-editor></lp-course-editor>',
22 } );
23 }, 100 );
24 } );
25