Skip to content

Instantly share code, notes, and snippets.

@AurelienLavorel
Created January 23, 2016 16:24
Show Gist options
  • Save AurelienLavorel/de7e1aecadfb3de996fe to your computer and use it in GitHub Desktop.
Save AurelienLavorel/de7e1aecadfb3de996fe to your computer and use it in GitHub Desktop.
Quick import colors Magento2
var colors = ["Sky blue","Antique violet","..."];
var i = 1;
colors.each(function(color) {
console.log(color, i);
jQuery('button#add_new_option_button').click();
jQuery('td.col-option_' + i + ' > input').val(color);
i++;
});
@gediminaskv
Copy link

great! thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment