Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-17 16:40:58 +0300
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-11-17 16:40:58 +0300
commite5edad45d7eff4af1532a05672b1af5fea3eff17 (patch)
treee1355b4352d26afe7aaa68ea0308c07687baef7d /libs
parent9db36d2f8499c41c47740b3e558256e571b4be2c (diff)
- removing console.log
Diffstat (limited to 'libs')
-rw-r--r--libs/jquery/truncate/jquery.truncate.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/jquery/truncate/jquery.truncate.js b/libs/jquery/truncate/jquery.truncate.js
index 21e0180352..0c4a9f326a 100644
--- a/libs/jquery/truncate/jquery.truncate.js
+++ b/libs/jquery/truncate/jquery.truncate.js
@@ -19,9 +19,6 @@ jQuery.fn.truncate = function(max) {
.replace(/</g, '&lt;')
.replace(/>/g, '&gt;');
html='<span class="truncated" title="'+vCleaned+'">'+newStringTruncated+'</span>';
- console.log(vCleaned);
- console.log(newStringTruncated);
- console.log(html);
jQuery(this).html(html);
break;
max--;