Skip to content

Commit

Permalink
1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Dongsik Yoo committed May 31, 2019
1 parent b714173 commit bec3034
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 19 deletions.
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -8,7 +8,7 @@
"dist/tui-calendar.js",
"dist/tui-calendar.css"
],
"version": "1.12.0",
"version": "1.12.1",
"description": "TOAST UI Calendar",
"ignore": [
"**/.*",
Expand Down
2 changes: 1 addition & 1 deletion dist/tui-calendar.css

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

15 changes: 6 additions & 9 deletions dist/tui-calendar.js
@@ -1,6 +1,6 @@
/*!
* TOAST UI Calendar
* @version 1.12.0 | Tue Apr 23 2019
* @version 1.12.1 | Fri May 31 2019
* @author NHN FE Development Lab <dl_javascript@nhn.com>
* @license MIT
*/
Expand Down Expand Up @@ -8395,7 +8395,7 @@ var mmin = Math.min;
* @property {Array.<string>} [daynames] - The day names in monthly. Default values are ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
* @property {number} [startDayOfWeek=0] - The start day of week
* @property {boolean} [narrowWeekend=false] - Make weekend column narrow(1/2 width)
* @property {boolean} [visibleWeeksCount=6] - The visible week count in monthly(0 or null are same with 6)
* @property {number} [visibleWeeksCount=6] - The visible week count in monthly(0 or null are same with 6)
* @property {boolean} [isAlways6Week=true] - Always show 6 weeks. If false, show 5 weeks or 6 weeks based on the month.
* @property {boolean} [workweek=false] - Show only 5 days except for weekend
* @property {number} [visibleScheduleCount] - The visible schedule count in monthly grid
Expand Down Expand Up @@ -20526,12 +20526,11 @@ var helpers = {
},

'timegridDisplayPrimaryTime-tmpl': function(time) {
var meridiem = 'am';
var hour = time.hour;
var meridiem = hour >= 12 ? 'pm' : 'am';

if (time.hour > 12) {
meridiem = 'pm';
hour = time.hour - 12;
if (hour > 12) {
hour = hour - 12;
}

return hour + ' ' + meridiem;
Expand Down Expand Up @@ -23616,9 +23615,7 @@ Time.prototype._parseDateGroup = function(str) {
d = parseInt(str.substr(6, 2), 10);
var date = datetime.start();

date.setFullYear(y);
date.setMonth(m - 1);
date.setDate(d);
date.setFullYear(y, m - 1, d);

return datetime.start(date);
};
Expand Down
2 changes: 1 addition & 1 deletion dist/tui-calendar.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tui-calendar.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tui-calendar.min.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/tui-calendar.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/tui-calendar.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion index.d.ts
@@ -1,4 +1,4 @@
// Type definitions for TOAST UI Calendar v1.12.0
// Type definitions for TOAST UI Calendar v1.12.1
// TypeScript Version: 3.2.1

declare namespace tuiCalendar {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "tui-calendar",
"author": "NHN FE Development Lab <dl_javascript@nhn.com>",
"version": "1.12.0",
"version": "1.12.1",
"main": "dist/tui-calendar.js",
"license": "MIT",
"description": "TOAST UI Calendar",
Expand Down

0 comments on commit bec3034

Please sign in to comment.