Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/ocsms.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2018-11-10 19:36:03 +0300
committerLoic Blot <loic.blot@unix-experience.fr>2018-11-10 19:36:03 +0300
commitc8deb8df6e751fa93c632d5f7a06052f7cda71de (patch)
tree7014decd5bd6321aa89ffdf7fbaa981b702f7bd3
parent13ba8b76206aa96d3865a6e7aaee50da245c18b0 (diff)
Drop some debugging code
-rw-r--r--js/devel/app.js3
-rw-r--r--js/devel/contactlist.js2
2 files changed, 1 insertions, 4 deletions
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;