From 7ab79c7551c54cbb8072d1f06b3b354bc0bbfedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 20 Feb 2013 16:55:29 +0100 Subject: [PATCH] albert: add piwik --- source/albert/index.html | 20 +++++++++++--------- source/albert/js/main.js | 1 - source/albert/js/plugins.js | 24 ------------------------ 3 files changed, 11 insertions(+), 34 deletions(-) delete mode 100644 source/albert/js/main.js delete mode 100644 source/albert/js/plugins.js diff --git a/source/albert/index.html b/source/albert/index.html index db62200..7c86f06 100644 --- a/source/albert/index.html +++ b/source/albert/index.html @@ -87,17 +87,19 @@ - - - - - + // Piwik + diff --git a/source/albert/js/main.js b/source/albert/js/main.js deleted file mode 100644 index 8b13789..0000000 --- a/source/albert/js/main.js +++ /dev/null @@ -1 +0,0 @@ - diff --git a/source/albert/js/plugins.js b/source/albert/js/plugins.js deleted file mode 100644 index 728680b..0000000 --- a/source/albert/js/plugins.js +++ /dev/null @@ -1,24 +0,0 @@ -// Avoid `console` errors in browsers that lack a console. -(function() { - var method; - var noop = function () {}; - var methods = [ - 'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', - 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', - 'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd', - 'timeStamp', 'trace', 'warn' - ]; - var length = methods.length; - var console = (window.console = window.console || {}); - - while (length--) { - method = methods[length]; - - // Only stub undefined methods. - if (!console[method]) { - console[method] = noop; - } - } -}()); - -// Place any jQuery/helper plugins in here.