diff --git a/public/fonts/fontello.html b/public/fonts/fontello.html index 56bd96ddd4f..4eb1420a3dd 100644 --- a/public/fonts/fontello.html +++ b/public/fonts/fontello.html @@ -236,7 +236,9 @@ body { font-weight: normal; font-style: normal; } - + .rtl .demo-icon { + direction: rtl; + } .demo-icon { @@ -286,6 +288,13 @@ body { } } + function toggleRTL(check) { + if (check.checked) { + document.getElementById('icons').classList.add('rtl'); + } else { + document.getElementById('icons').classList.remove('rtl'); + } + } @@ -294,9 +303,14 @@ body { fontello font demo - +
+ + +