Remove resolved firefox bug comment

This commit is contained in:
Carlos Galarza
2015-05-22 17:08:35 -05:00
parent 6fdab711b2
commit 8314929e2d

View File

@@ -416,8 +416,6 @@ Code.init = function() {
*/
Code.initLanguage = function() {
// Set the HTML's language and direction.
// document.dir fails in Mozilla, use document.body.parentNode.dir instead.
// https://bugzilla.mozilla.org/show_bug.cgi?id=151407
var rtl = Code.isRtl();
document.head.parentElement.setAttribute('dir', rtl ? 'rtl' : 'ltr');
document.head.parentElement.setAttribute('lang', Code.LANG);