We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c037e2 commit 4c26d09Copy full SHA for 4c26d09
resources/themes/pterodactyl/admin/servers/view/startup.blade.php
@@ -133,6 +133,9 @@
133
@parent
134
{!! Theme::js('vendor/lodash/lodash.js') !!}
135
<script>
136
+ $(window).on('load', function () {
137
+ $('#pNestId').change();
138
+ });
139
$(document).ready(function () {
140
$('#pPackId').select2({placeholder: 'Select a Service Pack'});
141
$('#pNestId').select2({placeholder: 'Select a Nest'}).on('change', function () {
@@ -150,7 +153,7 @@
150
153
}
151
154
152
155
$('#pEggId').change();
- }).change();
156
157
158
$('#pEggId').select2({placeholder: 'Select a Nest Egg'}).on('change', function () {
159
var selectedEgg = _.isNull($(this).val()) ? $(this).find('option').first().val() : $(this).val();
0 commit comments