Make use of Vue more universal (#2318)

pull/2327/head
Morlinest 7 years ago committed by Lauris BH
parent 9e9e1e0e52
commit f3486360d2
  1. 6
      public/js/index.js
  2. 2
      templates/user/dashboard/dashboard.tmpl

@ -1568,7 +1568,7 @@ $(document).ready(function () {
initWebhook();
initAdmin();
initCodeView();
initDashboardSearch();
initVueApp();
initTeamSettings();
// Repo clone url.
@ -1758,8 +1758,8 @@ function initVueComponents(){
})
}
function initDashboardSearch() {
var el = document.getElementById('dashboard-repo-search');
function initVueApp() {
var el = document.getElementById('app');
if (!el) {
return;
}

@ -7,7 +7,7 @@
<div class="ten wide column">
{{template "user/dashboard/feeds" .}}
</div>
<div id="dashboard-repo-search" class="six wide column">
<div id="app" class="six wide column">
<repo-search :search-limit="searchLimit" :suburl="suburl" :uid="uid"><i class="fa fa-spinner fa-spin"></i></repo-search>
</div>
</div>

Loading…
Cancel
Save