Emi Matchu
0e314482f7
I haven't been running Prettier consistently on things in this project. Now, it's quick-runnable, and I've got it on everything! Also, I just think tabs are the right default for this kind of thing, and I'm glad to get to switch over to it! (In `package.json`.)
6 lines
171 B
JavaScript
6 lines
171 B
JavaScript
(function () {
|
|
$("span.choose-outfit select").change(function (e) {
|
|
var select = $(this);
|
|
select.closest("li").find("input[type=text]").val(select.val());
|
|
});
|
|
})();
|