Replacing window.print with console.log call

This commit is contained in:
Yury Delendik 2012-11-08 18:00:08 -06:00
Родитель 0498e6a039
Коммит 73021178a6
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -59,3 +59,7 @@ function createAVM2(builtinPath, libraryPath, sysMode, appMode, next) {
}
});
}
window.print = function (msg) {
console.log(msg);
};

Просмотреть файл

@ -59,3 +59,7 @@ function createAVM2(builtinPath, libraryPath, sysMode, appMode, next) {
}
});
}
window.print = function (msg) {
console.log(msg);
};