Skip to content

Instantly share code, notes, and snippets.

@asarode
Created June 9, 2015 22:08
Show Gist options
  • Save asarode/bcfc264479959320659e to your computer and use it in GitHub Desktop.
Save asarode/bcfc264479959320659e to your computer and use it in GitHub Desktop.
Nightmare patch
// Nightmare patch for weird Chrome bug
Array.prototype.slice.call(document.querySelectorAll('md-input-container label')).forEach(function(label) {
label.style.direction = 'rtl';
setTimeout(function() {
label.style.direction =' ltr';
}, 0)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment