Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
blurymind committed Aug 28, 2024
1 parent 3badce5 commit 962f765
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions index.html

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion js/main.23e8dd84cf7981425b2f.js

This file was deleted.

1 change: 1 addition & 0 deletions js/main.53879e6ea627e761822e.js

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
48 changes: 24 additions & 24 deletions public/plugins/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -439,30 +439,30 @@ const getFunctionBody = (func = ()=>{}) => {
onUpdateConsoleLogsInternal();
});
const _log = console.log,
_warn = console.warn,
_info = console.info,
_error = console.error;
console.log = function() {
logOfConsole.push({type: 'log', arguments: arguments});
onUpdateConsoleLogsInternal();
return _log.apply(console, arguments);
};
console.warn = function() {
logOfConsole.push({type: 'warning', arguments: arguments});
onUpdateConsoleLogsInternal();
return _warn.apply(console, arguments);
};
console.error = function() {
logOfConsole.push({type: 'error', arguments: arguments});
onUpdateConsoleLogsInternal();
return _error.apply(console, arguments);
};
console.info = function() {
logOfConsole.push({type: 'info', arguments: arguments});
onUpdateConsoleLogsInternal();
return _info.apply(console, arguments);
};
// const _log = console.log,
// _warn = console.warn,
// _info = console.info,
// _error = console.error;
// console.log = function() {
// logOfConsole.push({type: 'log', arguments: arguments});
// onUpdateConsoleLogsInternal();
// return _log.apply(console, arguments);
// };
// console.warn = function() {
// logOfConsole.push({type: 'warning', arguments: arguments});
// onUpdateConsoleLogsInternal();
// return _warn.apply(console, arguments);
// };
// console.error = function() {
// logOfConsole.push({type: 'error', arguments: arguments});
// onUpdateConsoleLogsInternal();
// return _error.apply(console, arguments);
// };
// console.info = function() {
// logOfConsole.push({type: 'info', arguments: arguments});
// onUpdateConsoleLogsInternal();
// return _info.apply(console, arguments);
// };
</script>
<div style="display:flex">
Expand Down
2 changes: 1 addition & 1 deletion public/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.4.323"
"version": "0.4.324"
}
2 changes: 1 addition & 1 deletion sw.js

Large diffs are not rendered by default.

0 comments on commit 962f765

Please sign in to comment.