Skip to content

1.2.0

Choose a tag to compare

@seonim-ryu seonim-ryu released this 10 Jun 07:16
· 121 commits to master since this release

Add Feature

  • Add meridiem option on tui.util.formatDate
var option = {
     meridiemSet: {
          AM: '오전',
          PM: '오후'
      }
};
var date = {year: 1999, month: 9, date: 9, hour: 13, minute: 2};
var dateStr = formatDate('yyyy-MM-dd A hh:mm', date, option));

alert(dateStr); // '1999-09-09 오후 01:02'

Bug Fix

  • Minify bug on tui.util.defineClass (When using Maven Plugin)