mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-13 11:41:31 +00:00
updated streamline-setup v2
This commit is contained in:
+37
@@ -0,0 +1,37 @@
|
||||
$('.chat-left-inner > .chatonline').slimScroll({
|
||||
height: '100%',
|
||||
position: 'right',
|
||||
size: "0px",
|
||||
color: '#dcdcdc',
|
||||
|
||||
});
|
||||
$(function(){
|
||||
$(window).load(function(){ // On load
|
||||
$('.chat-list').css({'height':(($(window).height())-420)+'px'});
|
||||
});
|
||||
$(window).resize(function(){ // On resize
|
||||
$('.chat-list').css({'height':(($(window).height())-420)+'px'});
|
||||
});
|
||||
});
|
||||
|
||||
// this is for the left-aside-fix in content area with scroll
|
||||
|
||||
$(function() {
|
||||
$(window).load(function() { // On load
|
||||
$('.chat-left-inner').css({
|
||||
'height': (($(window).height()) - 240) + 'px'
|
||||
});
|
||||
});
|
||||
$(window).resize(function() { // On resize
|
||||
$('.chat-left-inner').css({
|
||||
'height': (($(window).height()) - 240) + 'px'
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
$(".open-panel").click(function() {
|
||||
$(".chat-left-aside").toggleClass("open-pnl");
|
||||
$(".open-panel i").toggleClass("ti-angle-left");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user