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:
authormatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-09-06 21:52:15 +0400
committermatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-09-06 21:52:15 +0400
commit1350058ca5948c4d98042918e17c16f31886d76f (patch)
treef85d1cec7a9c0014a98d1ded46dd2a45e6aba1ed /libs
parentad23ddc1e790626f015f16a46c772b66e59f2c1d (diff)
The full page with all the reports is OK
missing the Actions plugins reports (all page views, etc..) looks quite nice actually :)
Diffstat (limited to 'libs')
-rw-r--r--libs/jquery/truncate/jquery.truncate.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/jquery/truncate/jquery.truncate.js b/libs/jquery/truncate/jquery.truncate.js
index 558699f2f8..e67f364705 100644
--- a/libs/jquery/truncate/jquery.truncate.js
+++ b/libs/jquery/truncate/jquery.truncate.js
@@ -1,7 +1,8 @@
jQuery.fn.truncate = function(max) {
return this.each(function() {
var trail = '...';
- if (jQuery(this).children().length == 0) {
+ if (jQuery(this).children().length == 0)
+ {
v = jQuery.trim(jQuery(this).text());
while (max < v.length) {
c = v.charAt(max);