Skip to content

Commit

Permalink
Updated version, recompiled assets.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikegioia committed Jul 5, 2016
1 parent 9dc7590 commit ea83b75
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 17 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
Changelog
---------

`v1.4.5 ~ 2016-07-05`
> Bug fix for marking selected dates for more complex templates, PR from @pkostic.
`v1.4.4 ~ 2016-07-02`
> Bug fix for `startWithMonth` when used in a weekly calendar.
`v1.4.3 ~ 2016-07-01`
> Bug fix for data is not defined, PR from keioka.
> Bug fix for data is not defined, PR from @keioka.
`v1.4.2 ~ 2016-06-29`
> Added second option to `addEvents` to suppress the re-render.
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"jquery": ">=1.9",
"moment": ">=2.8.3"
},
"version": "1.4.4"
"version": "1.4.5"
}
4 changes: 2 additions & 2 deletions clndr.min.js

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions demo/css/clndr.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,12 @@ p {
.cal1 .clndr .clndr-table .header-days .header-day {
vertical-align: middle;
text-align: center;
border-left: 1px solid #000;
border-top: 1px solid #000;
border-left: 1px solid #000000;
border-top: 1px solid #000000;
color: #fff;
}
.cal1 .clndr .clndr-table .header-days .header-day:last-child {
border-right: 1px solid #000;
border-right: 1px solid #000000;
}
.cal1 .clndr .clndr-table tr {
height: 85px;
Expand All @@ -143,8 +143,8 @@ p {
vertical-align: top;
}
.cal1 .clndr .clndr-table tr .day {
border-left: 1px solid #000;
border-top: 1px solid #000;
border-left: 1px solid #000000;
border-top: 1px solid #000000;
width: 100%;
height: inherit;
}
Expand Down Expand Up @@ -176,7 +176,7 @@ p {
background: #ddd;
}
.cal1 .clndr .clndr-table tr .day:last-child {
border-right: 1px solid #000;
border-right: 1px solid #000000;
}
.cal1 .clndr .clndr-table tr .day .day-contents {
box-sizing: border-box;
Expand All @@ -188,8 +188,8 @@ p {
.cal1 .clndr .clndr-table tr .adjacent-month,
.cal1 .clndr .clndr-table tr .my-empty,
.cal1 .clndr .clndr-table tr .my-adjacent-month {
border-left: 1px solid #000;
border-top: 1px solid #000;
border-left: 1px solid #000000;
border-top: 1px solid #000000;
width: 100%;
height: inherit;
background: #eee;
Expand All @@ -204,15 +204,15 @@ p {
.cal1 .clndr .clndr-table tr .adjacent-month:last-child,
.cal1 .clndr .clndr-table tr .my-empty:last-child,
.cal1 .clndr .clndr-table tr .my-adjacent-month:last-child {
border-right: 1px solid #000;
border-right: 1px solid #000000;
}
.cal1 .clndr .clndr-table tr:last-child .day,
.cal1 .clndr .clndr-table tr:last-child .my-day {
border-bottom: 1px solid #000;
border-bottom: 1px solid #000000;
}
.cal1 .clndr .clndr-table tr:last-child .empty,
.cal1 .clndr .clndr-table tr:last-child .my-empty {
border-bottom: 1px solid #000;
border-bottom: 1px solid #000000;
}
.cal2 {
max-width: 177px;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clndr",
"version": "1.4.4",
"version": "1.4.5",
"description": "A jQuery calendar plugin that uses HTML templates.",
"author": "Kyle Stetz",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/clndr.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* ~ CLNDR v1.4.4 ~
* ~ CLNDR v1.4.5 ~
* ==============================================
* https://github.com/kylestetz/CLNDR
* ==============================================
Expand Down

0 comments on commit ea83b75

Please sign in to comment.