diff --git a/js/devel/app.js b/js/devel/app.js index 313f61c..dae8081 100644 --- a/js/devel/app.js +++ b/js/devel/app.js @@ -92,7 +92,6 @@ Vue.directive('confirm', { bind(el, binding, vnode) { const yesMethod = binding.value[1]; const bodyMessage = binding.value[0]; - console.log(bodyMessage); el.handleClick = (e) => { const data = { doYes: function () { yesMethod(); data.show = false; }, @@ -101,7 +100,7 @@ Vue.directive('confirm', { }; let dialog = new Dialog({ data: data }).$mount(); document.getElementById('app').appendChild(dialog.$el); - } + }; el.addEventListener('click', el.handleClick); }, unbind(el) { diff --git a/js/devel/contactlist.js b/js/devel/contactlist.js index 1824578..8a596b5 100644 --- a/js/devel/contactlist.js +++ b/js/devel/contactlist.js @@ -147,8 +147,6 @@ var ContactList = new Vue({ var bufferedContacts = []; $.each(jsondata['phonelist'], function (id, val) { - console.log(id); - console.log(val); var fn, peerLabel; if (typeof jsondata['contacts'][id] === 'undefined') { peerLabel = id;