Remove console log in oo apps

This commit is contained in:
yflory 2019-01-28 14:11:51 +01:00
parent d5f98c916b
commit af55e07107
4 changed files with 10 additions and 300 deletions

View File

@ -4193,7 +4193,6 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
var send = function (data) { var send = function (data) {
setTimeout(function () { setTimeout(function () {
console.log(data);
sockjs.onmessage({ sockjs.onmessage({
data: JSON.stringify(data) data: JSON.stringify(data)
}); });
@ -4249,7 +4248,6 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
}; };
sockjs.send = function (data) { sockjs.send = function (data) {
console.log(data);
try { try {
var obj = JSON.parse(data); var obj = JSON.parse(data);
} catch (e) { } catch (e) {

View File

@ -4193,7 +4193,6 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
var send = function (data) { var send = function (data) {
setTimeout(function () { setTimeout(function () {
console.log(data);
sockjs.onmessage({ sockjs.onmessage({
data: JSON.stringify(data) data: JSON.stringify(data)
}); });
@ -4203,12 +4202,13 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
type: 'license', type: 'license',
license: { license: {
type: 3, type: 3,
light: false, mode: 0,
trial: false, //light: false,
//trial: false,
rights: 1, rights: 1,
buildVersion: "5.2.6", buildVersion: "5.2.6",
buildNumber: 5, buildNumber: 2,
branding: false //branding: false
} }
}; };
@ -4248,7 +4248,6 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
}; };
sockjs.send = function (data) { sockjs.send = function (data) {
console.log(data);
try { try {
var obj = JSON.parse(data); var obj = JSON.parse(data);
} catch (e) { } catch (e) {

View File

@ -4193,7 +4193,6 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
var send = function (data) { var send = function (data) {
setTimeout(function () { setTimeout(function () {
console.log(data);
sockjs.onmessage({ sockjs.onmessage({
data: JSON.stringify(data) data: JSON.stringify(data)
}); });
@ -4203,12 +4202,13 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
type: 'license', type: 'license',
license: { license: {
type: 3, type: 3,
light: false, mode: 0,
trial: false, //light: false,
//trial: false,
rights: 1, rights: 1,
buildVersion: "5.2.6", buildVersion: "5.2.6",
buildNumber: 5, buildNumber: 2,
branding: false //branding: false
} }
}; };
@ -4248,7 +4248,6 @@ AscBrowser.convertToRetinaValue = function(value, isScale)
}; };
sockjs.send = function (data) { sockjs.send = function (data) {
console.log(data);
try { try {
var obj = JSON.parse(data); var obj = JSON.parse(data);
} catch (e) { } catch (e) {

File diff suppressed because one or more lines are too long