Explorar el Código

Remove forEach dependency

Denis K hace 8 años
padre
commit
b1a489486b
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  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();
             });