mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-06-07 07:56:23 +00:00
Drop some debugging code
This commit is contained in:
parent
13ba8b7620
commit
c8deb8df6e
@ -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) {
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user