Skip to content

Commit

Permalink
0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
youjung-hong committed Mar 26, 2018
1 parent e3f7d39 commit 6a536e9
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dist/tui-calendar.js",
"dist/tui-calendar.css"
],
"version": "0.9.1",
"version": "0.9.2",
"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.

13 changes: 7 additions & 6 deletions dist/tui-calendar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* tui-calendar
* @version 0.9.1 | Mon Mar 26 2018
* @version 0.9.2 | Mon Mar 26 2018
* @author NHNEnt FE Development Lab <[email protected]>
* @license undefined
*/
Expand Down Expand Up @@ -8616,8 +8616,8 @@ return /******/ (function(modules) { // webpackBootstrap
* 업무
**********/
taskView = new TaskView(options.week, vLayout.getPanelByName('Task').container);
taskView.on('afterRender', function(viewModel) {
vLayout.getPanelByName('Task').setHeight(null, viewModel.height);
taskView.on('afterRender', function() {
vLayout.getPanelByName('Task').setHeight(null, taskView.contentHeight);
});
weekView.addChild(taskView);
weekView.handler.click.task = new AlldayClick(dragHandler, taskView, baseController);
Expand Down Expand Up @@ -11152,7 +11152,7 @@ return /******/ (function(modules) { // webpackBootstrap
);
weekdayView.collapsed = this.collapsed;
weekdayView.on('afterRender', function(weekdayViewModel) {
self.contentHeight = weekdayViewModel.contentHeight + scheduleContainerTop;
self.contentHeight = weekdayViewModel.minHeight + scheduleContainerTop;
self.maxScheduleInDay = weekdayViewModel.maxScheduleInDay;
});

Expand Down Expand Up @@ -11280,7 +11280,7 @@ return /******/ (function(modules) { // webpackBootstrap
}

baseViewModel = this.getBaseViewModel(viewModel);
baseViewModel.contentHeight = this._getMinHeight(maxScheduleInDay);
baseViewModel.minHeight = this._getMinHeight(maxScheduleInDay);
baseViewModel.matrices = matrices;
baseViewModel.scheduleContainerTop = this.options.scheduleContainerTop;
baseViewModel.collapsed = (this.collapsed && (maxScheduleInDay > visibleScheduleCount)) ? 'collapsed' : '';
Expand All @@ -11301,7 +11301,8 @@ return /******/ (function(modules) { // webpackBootstrap
var opt = this.options;

return (
(maxScheduleInDay * (opt.scheduleHeight + opt.scheduleGutter)) +
(maxScheduleInDay * opt.scheduleHeight) +
((maxScheduleInDay - 1) * opt.scheduleGutter) +
opt.containerBottomGutter
);
};
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

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

8 changes: 4 additions & 4 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 package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tui-calendar",
"author": "NHNEnt FE Development Lab <[email protected]>",
"version": "0.9.1",
"version": "0.9.2",
"main": "dist/tui-calendar.js",
"license:": "MIT",
"description": "TOAST UI Calendar",
Expand Down

0 comments on commit 6a536e9

Please sign in to comment.