WordPress visual composer RTL on window resize

Solution:

If you want to fix VC Row on window resize and window load use this solution:

$(window).on( 'resize', function() {
    $( '.rtl [data-vc-full-width="true"]' ).each( function(){
        $( this ).css( 'right' , $( this ).css( 'left' ) ).css( 'left' , 'auto' );
    });
}).resize();