This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $lessonWrapper = $('.course-wrap .lesson-wrapper'); | |
// prevent default animation of right part | |
$lessonWrapper.css('webkitTransform', 'translateX(0px)'); | |
// allow smooth resizing (just filling with default css value for attribute 'position') | |
$lessonWrapper.css('position', 'static'); | |
// allow padding animation | |
$lessonWrapper.css('webkitTransition', 'padding 0.3s'); |