Skip to content

Commit

Permalink
fix silly syntax error, bump version number in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
zytzagoo committed Mar 30, 2017
1 parent 907a3ce commit 1fa76a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "cookie-banner",
"title": "Cookie Banner",
"description": "Javascript based cookie-info banner for complying with EU cookie law.",
"version": "1.0.0",
"version": "1.1.0",
"homepage": "http://cookiebanner.eu/",
"author": {
"name": "Good Code and Cookie Banner contributors",
Expand Down
3 changes: 2 additions & 1 deletion src/cookiebanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,8 @@ THE SOFTWARE.
el_a.style.textDecoration = this.options.moreinfoDecoration;
el_a.style.color = this.options.link;
el_a.style.fontWeight = this.options.moreinfoFontWeight;
if ('' !=== this.options.moreinfoFontSize) {

if ('' !== this.options.moreinfoFontSize) {
el_a.style.fontSize = this.options.moreinfoFontSize;
}

Expand Down

0 comments on commit 1fa76a1

Please sign in to comment.