Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/sharedDependencies.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ require('skin-red-css');

// Load JS (Global jQuery so that it's accessible by bootstrap)
window.jQuery = window.$ = require('jquery');
require('admin-lte/plugins/slimScroll/jquery.slimscroll.min');
require('bootstrap');
require('admin-lte');
2 changes: 0 additions & 2 deletions frontend/user/vue-components/ApplicationListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
<!-- Sidebar Menu -->
<ul class="sidebar-menu">
<li class="header">APPLICATIONS</li>
</ul>

<ul class="sidebar-menu">
<li v-show="!model.loading && model.appList.length === 0" id="no-app-msg">
<a href="#">No applications found</a>
</li>
Expand Down
8 changes: 5 additions & 3 deletions remoteappmanager/templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
{% endblock %}
</head>

<body class="hold-transition {{ skin }} sidebar-mini">
<body class="fixed hold-transition {{ skin }} sidebar-mini">

<noscript>
<div id='noscript'>
Expand Down Expand Up @@ -94,8 +94,10 @@
</header>

<aside class="main-sidebar">
{% block sidebar %}
{% endblock %}
<div class="slimScrollDiv">
{% block sidebar %}
{% endblock %}
</div>
</aside>

<div class="content-wrapper">
Expand Down