From 8314929e2dc05bae64990a4e438d1ab64a4d9b9c Mon Sep 17 00:00:00 2001 From: Carlos Galarza Date: Fri, 22 May 2015 17:08:35 -0500 Subject: [PATCH] Remove resolved firefox bug comment --- demos/code/code.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/demos/code/code.js b/demos/code/code.js index acf025d80..abbe14e13 100644 --- a/demos/code/code.js +++ b/demos/code/code.js @@ -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);