14 lines
434 B
Plaintext
Executable File
14 lines
434 B
Plaintext
Executable File
<%= render 'form', settings_simple_menu_item_menu_item_instances: @settings_menu_item_instances, item_sets: @item_sets %>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
attr_type = <%= raw @item.item_attributes.to_json %>;
|
|
attr_id = [];
|
|
$.each(attr_type, function(k, v) {
|
|
option = $('.' + k + ' option:selected').val();
|
|
attr_id.push(option);
|
|
});
|
|
$('#attr_type').val(JSON.stringify(attr_id));
|
|
})
|
|
</script>
|