RTL Support

15 Dec 20171 minute to read

This feature supports to change the left-to-right alignment of the Rotator to right-to-left (RTL). (I.e.) Sets the Rotator to do its actions from right to left. The property enableRTL sets the Rotator from right to left. The value set to this property is boolean type.

  • JAVASCRIPT
  • $(function () {
            // declaration
            $("#sliderContent").ejRotator({ slideWidth: 500, enableRTL: true });
        });