;(function($,_,undefined){"use strict";ips.controller.register('courses.front.lesson.view',{initialize:function(){this.on('click','[data-action="showLesson"]',this.fetchLesson);this.setup();},setup:function(){var url=$('.ipsCourseLessonList__item--currentLesson a').attr('href');ips.utils.history.replaceState(null,'courses.front.lesson.view',url);},fetchLesson:function(e){e.preventDefault();var self=this;var lesson=$(e.currentTarget);var dataUrl=lesson.data('url');var url=lesson.attr('href');$('.ipsCourseLessonList__item--currentLesson').removeClass('ipsCourseLessonList__item--currentLesson');ips.getAjax()(dataUrl,{showLoading:true}).done(function(response){$(e.currentTarget).closest('li').addClass('ipsCourseLessonList__item--currentLesson');$('#lessonWrapper').html(response);$(document).trigger('contentChange',[$('#lessonWrapper')]);ips.utils.history.pushState(ips.utils.history.getState(''),'',url)})}});}(jQuery,_));;