瀏覽代碼

Remove forEach dependency

Denis K 8 年之前
父節點
當前提交
b1a489486b
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      jet/static/jet/js/src/features/themes.js

+ 4 - 4
jet/static/jet/js/src/features/themes.js

@@ -37,14 +37,14 @@ Themes.prototype = {
                 }
             };
 
-            cssToLoad.forEach(function(css) {
+            $.each(cssToLoad, function() {
                 $('<link>')
                     .attr('rel', 'stylesheet')
-                    .addClass(css['class'])
-                    .attr('href', css['url'])
+                    .addClass(this['class'])
+                    .attr('href', this['url'])
                     .load(onCssLoaded)
                     .appendTo('head');
-                $('.' + css['class'])
+                $('.' + this['class'])
                     .slice(0, -2)
                     .remove();
             });