Skip to content

Commit

Permalink
Dev: Fix Min and Max Value positions for RTL (reverted from commit e9…
Browse files Browse the repository at this point in the history
…a0f28ad49a581cd83da788741c2f0dad792762)
  • Loading branch information
tpartner committed Dec 23, 2016
1 parent 5b4fe73 commit 51d1b34
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -63,8 +63,8 @@
));
?>
<?php if($slider_showminmax): ?>
<div class='pull-<?php echo getLanguageRTL(App()->language) ? 'right' : 'left'; ?> help-block'><?php echo $slider_reversed == 'false' ? $slider_min : $slider_max; ?></div>
<div class='pull-<?php echo getLanguageRTL(App()->language) ? 'left' : 'right'; ?> help-block'><?php echo $slider_reversed == 'false' ? $slider_max : $slider_min; ?></div>
<div class='pull-left help-block'><?php echo $slider_reversed == 'false' ? $slider_min : $slider_max; ?></div>
<div class='pull-right help-block'><?php echo $slider_reversed == 'false' ? $slider_max : $slider_min; ?></div>
<?php endif; ?>
<?php if ($slider_reset): ?>
<div class="ls-input-group-extra ls-no-js-hidden ls-input-group-reset">
Expand Down

0 comments on commit 51d1b34

Please sign in to comment.