Skip to content

Instantly share code, notes, and snippets.

@dotandimet
Created May 1, 2013 16:21
Show Gist options
  • Save dotandimet/5496319 to your computer and use it in GitHub Desktop.
Save dotandimet/5496319 to your computer and use it in GitHub Desktop.
jQuery hack to switch fargo outline item direction if it contains hebrew text.
$('.concord-text')
.each(function(t){
if ($(this).text().match(/[אבגדהוזחטיכלמנסעפצקרשת]/)) {
$(this).attr('dir', 'rtl');
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment