Skip to content

Commit

Permalink
bump version to v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mario Lemke committed Jul 27, 2016
1 parent 3dab973 commit daedff0
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.cookiefy",
"version": "1.0.3",
"version": "1.0.4",
"homepage": "https://kmarryo.github.io/jquery.cookiefy/",
"authors": [
"Mario Lemke"
Expand Down
3 changes: 1 addition & 2 deletions demo/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ $(function () {
fontFamily: 'Trebuchet MS',
fontSize: '13px',
borderTop: '1px solid #404040',
devMode: true,
closeButtonUrl: ''
devMode: true
});
});
10 changes: 6 additions & 4 deletions dist/jquery.cookiefy.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* jquery.cookiefy - Lightweight jQuery plugin to the EU cookie laws
* @version: v1.0.3 (2016-07-20 10:15:07)
* @version: v1.0.3 (2016-07-27 12:39:40)
* @documentation: https://kmarryo.github.io/jquery.cookiefy/
* @author: Mario Lemke (https://github.com/kmarryo)
* @license: MIT
Expand Down Expand Up @@ -38,6 +38,7 @@ function get_cookie(c_name) {
var pluginName = 'cookiefy',
defaults = {
devMode: false,
zIndex: 50,
backgroundColor: '#bebebe',
color: '#000',
borderTop: '1px solid #000',
Expand Down Expand Up @@ -74,7 +75,8 @@ function get_cookie(c_name) {
backgroundColor: settings.backgroundColor,
color: settings.color,
borderTop: settings.borderTop,
boxShadow: '0px 1px 4px 1px rgba(64,64,64,1)'
boxShadow: '0px 1px 4px 1px rgba(64,64,64,1)',
zIndex: settings.zIndex
};

if (typeof settings.fontFamily !== "undefined") {
Expand All @@ -100,7 +102,7 @@ function get_cookie(c_name) {
html: settings.displayedHtml,
id: settings.cssPrefix + 'cookie-text',
css: {
paddingLeft: '15%',
paddingLeft: '10%',
paddingRight: '15%'
}
});
Expand All @@ -110,7 +112,7 @@ function get_cookie(c_name) {
cursor: 'pointer',
position: 'absolute',
top: '50%',
right: '25px',
right: '3%',
width: 'auto',
maxHeight: '2rem',
transform: 'translateY(-50%)'
Expand Down
4 changes: 2 additions & 2 deletions dist/jquery.cookiefy.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jquery.cookiefy",
"version": "1.0.3",
"version": "1.0.4",
"description": "Lightweight jQuery plugin to the EU cookie laws",
"main": "dist/jquery.cookiefy.js",
"scripts": {
Expand Down
8 changes: 5 additions & 3 deletions src/jquery.plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
var pluginName = 'cookiefy',
defaults = {
devMode: false,
zIndex: 50,
backgroundColor: '#bebebe',
color: '#000',
borderTop: '1px solid #000',
Expand Down Expand Up @@ -43,7 +44,8 @@
backgroundColor: settings.backgroundColor,
color: settings.color,
borderTop: settings.borderTop,
boxShadow: '0px 1px 4px 1px rgba(64,64,64,1)'
boxShadow: '0px 1px 4px 1px rgba(64,64,64,1)',
zIndex: settings.zIndex
};

if (typeof settings.fontFamily !== "undefined") {
Expand All @@ -69,7 +71,7 @@
html: settings.displayedHtml,
id: settings.cssPrefix + 'cookie-text',
css: {
paddingLeft: '15%',
paddingLeft: '10%',
paddingRight: '15%'
}
});
Expand All @@ -79,7 +81,7 @@
cursor: 'pointer',
position: 'absolute',
top: '50%',
right: '25px',
right: '3%',
width: 'auto',
maxHeight: '2rem',
transform: 'translateY(-50%)'
Expand Down

0 comments on commit daedff0

Please sign in to comment.