14 lines
283 B
JSON
Executable File
14 lines
283 B
JSON
Executable File
<script>
|
|
App.setPageOption({
|
|
appTopMenu: true,
|
|
clearOptionOnLeave: true
|
|
});
|
|
|
|
$.ajax({
|
|
url: 'partial/top-menu.html',
|
|
success: function(html) {
|
|
$('[data-id="app-extra-elm"]').html(html);
|
|
App.restartGlobalFunction();
|
|
}
|
|
});
|
|
</script> |