Skip to content

Releases: nhn/tui.code-snippet

v1.4.0

27 Apr 08:15
Compare
Choose a tag to compare

Features

// Recommandation: call `sendHostname` once on module load.
import util from 'tui-code-snippet';

util.sendHostname('componentName');

v1.3.0

28 Mar 07:47
Compare
Choose a tag to compare

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

14 Nov 01:49
Compare
Choose a tag to compare

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

28 Aug 10:51
Compare
Choose a tag to compare

Chores

  • Update Configurations: webpack, karma
  • Update commonjs type examples on jsdoc @example.
  • Update README

v1.2.5

28 Aug 10:36
Compare
Choose a tag to compare

New

  • Publish to npm

You can install tui-code-snippet@>=1.2.5 through npm.

npm install tui-code-snippet --save

Change

  • Change build tool to webpack from grunt

1.2.4

05 Apr 07:16
Compare
Choose a tag to compare

Bug Fix

  • tui.util.browser
    • Fixed that the user agent value is not safari and detecting other browser on mobile safari

1.2.3

21 Mar 06:44
Compare
Choose a tag to compare

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)

1.2.2

21 Oct 03:41
Compare
Choose a tag to compare

Bug Fix

  • formatDate
    • When using meridiemSet option, the midnight time display 12:00 AM.

1.2.1

08 Aug 02:17
Compare
Choose a tag to compare

Bug Fix

1.2.0

10 Jun 07:16
Compare
Choose a tag to compare

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)