MDL-29980 fix rules typo

Credit goes to Paul Nicholls.
This commit is contained in:
Petr Skoda
2011-10-28 15:36:32 +02:00
parent e1fe0c5189
commit a944c3dc97
+1 -1
View File
@@ -1652,7 +1652,7 @@ M.util.load_flowplayer = function() {
rule = '';
if (/^\.mp3flowplayer_.*Color$/.test(allrules[i].selectorText)) {
if (typeof(allrules[i].cssText) != 'undefined') {
rule = allrules[i].style.cssText;
rule = allrules[i].cssText;
} else if (typeof(allrules[i].style.cssText) != 'undefined') {
rule = allrules[i].style.cssText;
}