Browse Source

Disable Vue's console advertisments (#15354)

tags/v1.15.0-rc1
silverwind 3 years ago
parent
commit
99f835b9ca
No account linked to committer's email address
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      web_src/js/index.js

+ 5
- 0
web_src/js/index.js View File

@@ -35,6 +35,11 @@ const commentMDEditors = {};
// Silence fomantic's error logging when tabs are used without a target content element
$.fn.tab.settings.silent = true;

// Silence Vue's console advertisments in dev mode
// To use the Vue browser extension, enable the devtools option temporarily
Vue.config.productionTip = false;
Vue.config.devtools = false;

function initCommentPreviewTab($form) {
const $tabMenu = $form.find('.tabular.menu');
$tabMenu.find('.item').tab();

Loading…
Cancel
Save