Releases: nhn/tui.code-snippet
Releases · nhn/tui.code-snippet
v1.4.0
v1.3.0
Add Feature
- tui.util.imagePing
Request imagePing to a specific server.
util.imagePing('https://someUrl', {
v: 1,
t: 'event',
tid: 'trackingid',
cid: 'cid',
dp: 'dp',
dh: 'dh'
});
v1.2.9
Change
- Improved performance of
pick
method - Changed webpack config file
Fix
- Fixed script error that the minified bundle file is loaded on IE8
v1.2.8
Chores
- Update Configurations: webpack, karma
- Update commonjs type examples on jsdoc
@example
. - Update README
v1.2.5
1.2.4
Bug Fix
tui.util.browser
- Fixed that the user agent value is not
safari
and detecting other browser on mobile safari
- Fixed that the user agent value is not
1.2.3
Change
tui.util.browser
- Add a condition of
tui.util.browser.others === true
(when a browser is detected to IE8~10 and a version value is invalid)
- Add a condition of
1.2.2
Bug Fix
- formatDate
- When using
meridiemSet
option, the midnight time display12:00 AM
.
- When using
1.2.1
Bug Fix
- formatDate
- 'A hh:mm' --> 'AM 03:44' (meridem with only time-format)
- (24hour) 12:34 --> 'PM 12:34'
(12-hour clock system: https://en.wikipedia.org/wiki/12-hour_clock)
1.2.0
Add Feature
- Add
meridiem
option ontui.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)