Skip to content

Commit

Permalink
ax5formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasJang committed Mar 3, 2016
1 parent 20a51b3 commit 086e061
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 26 deletions.
26 changes: 1 addition & 25 deletions dist/ax5core.js
Original file line number Diff line number Diff line change
Expand Up @@ -1687,23 +1687,6 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
}
}

/**
* @method ax5.util.stopEvent
* @param {Event} e
* @example
* ```
* ax5.util.stopEvent(e);
* ```
*/
function stopEvent(e) {
// 이벤트 중지 구문
if (e.preventDefault) e.preventDefault();
if (e.stopPropagation) e.stopPropagation();
e.cancelBubble = true;
return false;
// 이벤트 중지 구문 끝
}

return {
alert: alert,
each: each,
Expand Down Expand Up @@ -1749,8 +1732,7 @@ var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol
cssNumber: cssNumber,
css: css,
isDate: isDate,
isDateFormat: isDateFormat,
stopEvent: stopEvent
isDateFormat: isDateFormat
};
}();

Expand Down Expand Up @@ -1780,12 +1762,6 @@ ax5.info.errorMsg["single-uploader"] = {
ax5.info.errorMsg["ax5calendar"] = {
"401": "Can not find target element"
};

ax5.info.errorMsg["ax5formatter"] = {
"401": "Can not find target element",
"402": "Can not find boundID",
"501": "Can not find pattern"
};
// 필수 Ployfill 확장 구문
(function () {
'use strict';
Expand Down
Loading

0 comments on commit 086e061

Please sign in to comment.