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
diff options
context:
space:
mode:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-08-12 06:34:01 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-08-12 06:36:33 +0400
commit93e2098318669cbcfad468e2aa94f56f03952531 (patch)
treebed599516c348523b71b995a7af5774e2f5a4841 /libs/jquery
parent954c66c87034e6cc22ad8319a63a9f1f087f1520 (diff)
Refs #3089, added behavior for click on 'view more information' that loads more visits into the visit list.
Notes: - Fixed bug in reinitialise() of jquery.jscrollpane.js.
Diffstat (limited to 'libs/jquery')
-rw-r--r--libs/jquery/jquery.jscrollpane.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/jquery/jquery.jscrollpane.js b/libs/jquery/jquery.jscrollpane.js
index 48d8be8537..e27742739d 100644
--- a/libs/jquery/jquery.jscrollpane.js
+++ b/libs/jquery/jquery.jscrollpane.js
@@ -129,10 +129,10 @@
maintainAtBottom = settings.stickToBottom && isCloseToBottom();
maintainAtRight = settings.stickToRight && isCloseToRight();
- hasContainingSpaceChanged = elem.innerWidth() + originalPaddingTotalWidth != paneWidth || elem.outerHeight() != paneHeight;
+ hasContainingSpaceChanged = elem.innerWidth() != paneWidth - originalPaddingTotalWidth || elem.outerHeight() != paneHeight;
if (hasContainingSpaceChanged) {
- paneWidth = elem.innerWidth() + originalPaddingTotalWidth;
+ paneWidth = elem.innerWidth();
paneHeight = elem.innerHeight();
container.css({
width: paneWidth + 'px',