Fix print button in slide

This commit is contained in:
yflory
2017-07-20 14:41:51 +02:00
parent 3bd5f01e53
commit a5a73ce326
5 changed files with 27 additions and 12 deletions

View File

@@ -299,7 +299,6 @@ define([
var MutationObserver = window.MutationObserver;
var addTippy = function (el) {
if (el.nodeName === 'IFRAME') { return; }
console.log(el);
Tippy(el, {
position: 'bottom',
distance: 0,

View File

@@ -227,7 +227,6 @@ define([
if (!isId) { return; }
var decryptedMsg = channel.encryptor.decrypt(msg);
console.log(decryptedMsg);
var parsed = JSON.parse(decryptedMsg);
if (parsed[0] !== Types.mapId && parsed[0] !== Types.mapIdAck) { return; }
if (parsed[2] !== sender || !parsed[1]) { return; }