Attempt again to load egg settings
This commit is contained in:
parent
4c26d09145
commit
7b34dab453
1 changed files with 17 additions and 20 deletions
|
@ -133,28 +133,8 @@
|
||||||
@parent
|
@parent
|
||||||
{!! Theme::js('vendor/lodash/lodash.js') !!}
|
{!! Theme::js('vendor/lodash/lodash.js') !!}
|
||||||
<script>
|
<script>
|
||||||
$(window).on('load', function () {
|
|
||||||
$('#pNestId').change();
|
|
||||||
});
|
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('#pPackId').select2({placeholder: 'Select a Service Pack'});
|
$('#pPackId').select2({placeholder: 'Select a Service Pack'});
|
||||||
$('#pNestId').select2({placeholder: 'Select a Nest'}).on('change', function () {
|
|
||||||
$('#pEggId').html('').select2({
|
|
||||||
data: $.map(_.get(Pterodactyl.nests, $(this).val() + '.eggs', []), function (item) {
|
|
||||||
return {
|
|
||||||
id: item.id,
|
|
||||||
text: item.name,
|
|
||||||
};
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (_.isObject(_.get(Pterodactyl.nests, $(this).val() + '.eggs.' + Pterodactyl.server.egg_id))) {
|
|
||||||
$('#pEggId').val(Pterodactyl.server.egg_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
$('#pEggId').change();
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#pEggId').select2({placeholder: 'Select a Nest Egg'}).on('change', function () {
|
$('#pEggId').select2({placeholder: 'Select a Nest Egg'}).on('change', function () {
|
||||||
var selectedEgg = _.isNull($(this).val()) ? $(this).find('option').first().val() : $(this).val();
|
var selectedEgg = _.isNull($(this).val()) ? $(this).find('option').first().val() : $(this).val();
|
||||||
var parentChain = _.get(Pterodactyl.nests, $("#pNestId").val());
|
var parentChain = _.get(Pterodactyl.nests, $("#pNestId").val());
|
||||||
|
@ -210,6 +190,23 @@
|
||||||
$('#appendVariablesTo').append(dataAppend).find('#egg_variable_' + item.env_variable).val(setValue);
|
$('#appendVariablesTo').append(dataAppend).find('#egg_variable_' + item.env_variable).val(setValue);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#pNestId').select2({placeholder: 'Select a Nest'}).on('change', function () {
|
||||||
|
$('#pEggId').html('').select2({
|
||||||
|
data: $.map(_.get(Pterodactyl.nests, $(this).val() + '.eggs', []), function (item) {
|
||||||
|
return {
|
||||||
|
id: item.id,
|
||||||
|
text: item.name,
|
||||||
|
};
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (_.isObject(_.get(Pterodactyl.nests, $(this).val() + '.eggs.' + Pterodactyl.server.egg_id))) {
|
||||||
|
$('#pEggId').val(Pterodactyl.server.egg_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
$('#pEggId').change();
|
||||||
|
}).change();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@endsection
|
@endsection
|
||||||
|
|
Loading…
Reference in a new issue