Skip to content

Commit 14fbe03

Browse files
committed
[bug] correct broken state path in header margin check
1 parent fe94dfd commit 14fbe03

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎js/header.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var header = (function(){
4343
var_margin=function(){
4444
varheight=parseInt(getComputedStyle(header).height,10);
4545
varmarginValue;
46-
if(state.get().background.image.show&&(state.get().header.shade.show&&state.get().header.shade.style=="always")||state.get().header.shade.style=="always"||state.get().header.shade.border.bottom){
46+
if(state.get().background.image.show&&(state.get().header.shade.show&&state.get().header.shade.style=="always")||state.get().header.shade.style=="always"||state.get().header.shade.border.bottom.show){
4747
marginValue=(height+fontSize);
4848
}else{
4949
marginValue=height;

‎js/version.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
varversion=(function(){
22

33
// version is normally bumped when the state needs changing or any new functionality is added
4-
varcurrent="2.16.0";
4+
varcurrent="2.16.1";
55

66
varcompare=function(a,b){
77
varpa=a.split(".");

0 commit comments

Comments
(0)