Created
February 28, 2017 09:58
-
-
Save bekapod/436063b85db490f95a8f4b81c9bae40f to your computer and use it in GitHub Desktop.
Toggle LTR/RTL dir
This file contains 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
if (document.querySelector('html').getAttribute('dir') == 'rtl') { | |
document.querySelector('html').setAttribute('dir', 'ltr'); | |
} else { | |
document.querySelector('html').setAttribute('dir', 'rtl'); | |
} | |
This file contains 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
javascript:(function()%7Bif%20(document.querySelector('html').getAttribute('dir')%20%3D%3D%20'rtl')%20%7Bdocument.querySelector('html').setAttribute('dir'%2C%20'ltr')%3B%7D%20else%20%7Bdocument.querySelector('html').setAttribute('dir'%2C%20'rtl')%3B%7D%7D)() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment