Skip to content
Snippets Groups Projects
Commit 7416fdc6 authored by Damien's avatar Damien
Browse files

[FEAT] [PARA V2] Nice scroll

parent 8429a48a
No related branches found
No related tags found
No related merge requests found
......@@ -132,6 +132,7 @@ var SignatureBookComponent = (function () {
setTimeout(function () {
$j("#resListContent").niceScroll({ touchbehavior: false, cursorcolor: "#666", cursoropacitymax: 0.6, cursorwidth: 4 });
$j("#rightPanelContent").niceScroll({ touchbehavior: false, cursorcolor: "#666", cursoropacitymax: 0.6, cursorwidth: 4 });
$j(".pjSign").niceScroll({ touchbehavior: true, cursorcolor: "#666", cursoropacitymax: 0.6, cursorwidth: 4 });
$j("#resListContent").scrollTop(0);
$j("#resListContent").scrollTop($j(".resListContentFrameSelected").offset().top - 42);
$j("#obsVersion").tooltipster({
......@@ -364,6 +365,7 @@ var SignatureBookComponent = (function () {
else {
alert(data.error);
}
_this.showSignaturesPanel = false;
_this.loadingSign = false;
});
}
......
......@@ -138,6 +138,7 @@ export class SignatureBookComponent implements OnInit {
setTimeout(() => {
$j("#resListContent").niceScroll({touchbehavior:false,cursorcolor:"#666",cursoropacitymax:0.6,cursorwidth:4});
$j("#rightPanelContent").niceScroll({touchbehavior:false,cursorcolor:"#666",cursoropacitymax:0.6,cursorwidth:4});
$j(".pjSign").niceScroll({touchbehavior:true,cursorcolor:"#666",cursoropacitymax:0.6,cursorwidth:4});
$j("#resListContent").scrollTop(0);
$j("#resListContent").scrollTop($j(".resListContentFrameSelected").offset().top - 42);
$j("#obsVersion").tooltipster({
......@@ -370,6 +371,7 @@ export class SignatureBookComponent implements OnInit {
alert(data.error);
}
this.showSignaturesPanel = false;
this.loadingSign = false;
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment