From 81565e1f36ab016a27eb9d340d66ec5fbfc1e225 Mon Sep 17 00:00:00 2001 From: ltodorov Date: Fri, 11 Jul 2014 22:16:21 +0300 Subject: [PATCH] Add more methods Google Chrome supports 'timeline' and 'timelineEnd'. Ref. https://developer.chrome.com/devtools/docs/console-api#consoletimelinelabel --- js/plugins.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/plugins.js b/js/plugins.js index 728680b08d..f887480226 100644 --- a/js/plugins.js +++ b/js/plugins.js @@ -6,7 +6,7 @@ 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', - 'timeStamp', 'trace', 'warn' + 'timeline', 'timelineEnd', 'timeStamp', 'trace', 'warn' ]; var length = methods.length; var console = (window.console = window.console || {});