Skip to content

Commit

Permalink
MAGETWO-55217: [GitHub] Process Public Pull Requests #3050
Browse files Browse the repository at this point in the history
  • Loading branch information
iivashchenko committed Jul 21, 2016
1 parent d042e01 commit 7b0228f
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,10 @@ setSettings = function(urlTemplate, codeElement, themeElement) {
return false;
}

codeElement = $('#' + codeElement).val();
themeElement = $('#' + themeElement).val();

url = mageTemplate(urlTemplate, {
data: {
'code': codeElement,
'theme_id': themeElement
'code': $('#' + codeElement).val(),
'theme_id': $('#' + themeElement).val()
}
});

Expand Down

0 comments on commit 7b0228f

Please sign in to comment.