Merge pull request #26 from Priyank57/master

right_col height set to screen height
pull/42/head
Aigars Silkalns 2016-02-26 16:50:16 +02:00
commit a9ecf4e24d
3 changed files with 48 additions and 35 deletions

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
<group/>
</open-files>
</project-private>

View File

@ -11,7 +11,6 @@ body.nav-sm .container.body .right_col {
margin-left: 70px;
z-index: 2;
}
.right_col{min-height: 1000px;}
body.nav-sm .navbar.nav_title {
width: 70px;
}

View File

@ -60,6 +60,12 @@ $(function () {
});
/** ****** /left menu *********************** **/
/** ****** right_col height flexible *********************** **/
$(".right_col").css("min-height", $(window).height());
$(window).resize(function () {
$(".right_col").css("min-height", $(window).height());
});
/** ****** /right_col height flexible *********************** **/
@ -125,7 +131,8 @@ var __slice = [].slice;
Starrr.prototype.defaults = {
rating: void 0,
numStars: 5,
change: function (e, value) {}
change: function (e, value) {
}
};
function Starrr($el, options) {