Backups Created:
/home/teltatz/public_html/wp-admin/admin-wolf.php
/home/teltatz/public_html/wp-content/edit-wolf.php
/home/teltatz/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: course.js
const Course = { heartbeat: function( context ) { LP.Request( { type: 'heartbeat', } ).then( function( response ) { var result = response.body; context.commit( 'UPDATE_HEART_BEAT', !! result.success ); }, function( error ) { context.commit( 'UPDATE_HEART_BEAT', false ); } ); }, draftCourse: function( context, payload ) { var auto_draft = context.getters.autoDraft; if ( auto_draft ) { LP.Request( { type: 'draft-course', course: JSON.stringify( payload ), } ).then( function( response ) { var result = response.body; if ( ! result.success ) { return; } context.commit( 'UPDATE_AUTO_DRAFT_STATUS', false ); } ); } }, newRequest: function( context ) { context.commit( 'INCREASE_NUMBER_REQUEST' ); context.commit( 'UPDATE_STATUS', 'loading' ); window.onbeforeunload = function() { return ''; }; }, requestCompleted: function( context, status ) { context.commit( 'DECREASE_NUMBER_REQUEST' ); if ( context.getters.currentRequest === 0 ) { context.commit( 'UPDATE_STATUS', status ); window.onbeforeunload = null; } }, }; export default Course;