Skip to content

Commit

Permalink
Merge pull request #689 from axisj/dev
Browse files Browse the repository at this point in the history
1.0.19
  • Loading branch information
thomasJang committed Aug 22, 2015
2 parents 74054a6 + a0bdbe3 commit 0e38230
Show file tree
Hide file tree
Showing 10 changed files with 75 additions and 66 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axisj",
"version": "1.0.18",
"version": "1.0.19",
"homepage": "https://github.com/axisj-com/axisj",
"authors": [
"[email protected] thomasJ and team axisj"
Expand Down
33 changes: 18 additions & 15 deletions dist/AXJ.all.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
AXJ - v1.0.18 - 2015-08-22
AXJ - v1.0.18 - 2015-08-23
*/
/*!
AXJ - v1.0.18 - 2015-08-22
AXJ - v1.0.18 - 2015-08-23
*/

if(!window.AXConfig){
Expand Down Expand Up @@ -21298,10 +21298,6 @@ var AXInputConverter = Class.create(AXJ, {
},
bind: function (obj) {
var cfg = this.config;

if (!obj.id) {
obj.id = "AXInput-" + axf.getUniqueId();
}
if (!AXgetId(obj.id)) {
trace("bind 대상이 없어 bind 처리할 수 없습니다.");
return;
Expand Down Expand Up @@ -25750,6 +25746,7 @@ axdom.fn.unbindInput = function (config) {
**/
axdom.fn.bindSearch = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
if (config == undefined) config = {};
config.id = this.id;
config.bindType = "search";
Expand Down Expand Up @@ -25777,6 +25774,7 @@ axdom.fn.bindSearch = function (config) {
**/
axdom.fn.bindNumber = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "number";
AXInput.bind(config);
Expand All @@ -25800,6 +25798,7 @@ axdom.fn.bindNumber = function (config) {
**/
axdom.fn.bindMoney = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "money";
AXInput.bind(config);
Expand Down Expand Up @@ -25862,6 +25861,7 @@ axdom.fn.bindMoney = function (config) {
**/
axdom.fn.bindSelector = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "selector";
AXInput.bind(config);
Expand Down Expand Up @@ -25907,6 +25907,7 @@ axdom.fn.bindSelectorBlur = function (config) {
**/
axdom.fn.bindSlider = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "slider";
AXInput.bind(config);
Expand Down Expand Up @@ -25936,6 +25937,7 @@ axdom.fn.bindSlider = function (config) {
**/
axdom.fn.bindTwinSlider = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "twinSlider";
AXInput.bind(config);
Expand All @@ -25962,6 +25964,7 @@ axdom.fn.bindTwinSlider = function (config) {
**/
axdom.fn.bindSwitch = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "switch";
AXInput.bind(config);
Expand Down Expand Up @@ -25993,6 +25996,7 @@ axdom.fn.bindSwitch = function (config) {
**/
axdom.fn.bindSegment = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "segment";
AXInput.bind(config);
Expand Down Expand Up @@ -26026,6 +26030,7 @@ axdom.fn.bindSegment = function (config) {
**/
axdom.fn.bindDate = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "date";
AXInput.bind(config);
Expand Down Expand Up @@ -26077,6 +26082,7 @@ axdom.fn.unbindDate = function (config) {
**/
axdom.fn.bindDateTime = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "date";
config.expandTime = true;
Expand Down Expand Up @@ -26113,6 +26119,7 @@ axdom.fn.bindDateTime = function (config) {
**/
axdom.fn.bindTwinDate = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "twinDate";
AXInput.bind(config);
Expand Down Expand Up @@ -26148,6 +26155,7 @@ axdom.fn.bindTwinDate = function (config) {
**/
axdom.fn.bindTwinDateTime = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "twinDateTime";
config.expandTime = true;
Expand All @@ -26168,6 +26176,7 @@ axdom.fn.bindTwinDateTime = function (config) {
**/
axdom.fn.bindPlaceHolder = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "placeHolder";
AXInput.bind(config);
Expand Down Expand Up @@ -26307,10 +26316,6 @@ var AXInputConverterPro = Class.create(AXJ, {
},
bind: function (obj) {
var cfg = this.config;

if (!obj.id) {
obj.id = "AXInputPro-" + axf.getUniqueId();
}
if (!AXgetId(obj.id)) {
trace("bind 대상이 없어 bind 처리할 수 없습니다.");
return;
Expand Down Expand Up @@ -27887,6 +27892,7 @@ AXInputPro.setConfig({ targetID: "inputBasic" });
*/
axdom.fn.bindPattern = function(config){
axf.each(this, function () {
if(!this.id) this.id = "AXInputPro-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "pattern";
AXInputPro.bind(config);
Expand Down Expand Up @@ -28004,6 +28010,7 @@ axdom.fn.bindPatternGetDisplayText = function(){
*/
axdom.fn.bindTagSelector = function(config){
axf.each(this, function () {
if(!this.id) this.id = "AXInputPro-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "tagSelector";
AXInputPro.bind(config);
Expand Down Expand Up @@ -32156,11 +32163,6 @@ var AXSelectConverter = Class.create(AXJ, {
},
bind: function (obj) {
var cfg = this.config;

if (!obj.id) {
trace("bind 대상 ID가 없어 bind 처리할 수 없습니다.");
return;
}
if (!AXgetId(obj.id)) {
obj.id = "AXSelect-" + axf.getUniqueId();
}
Expand Down Expand Up @@ -33395,6 +33397,7 @@ axdom("Selector").bindSelect(configs);
*/
axdom.fn.bindSelect = function (config) {
axdom.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
if (config == undefined) config = {};
config.id = this.id;
AXSelect.bind(config);
Expand Down
30 changes: 15 additions & 15 deletions dist/AXJ.min.js

Large diffs are not rendered by default.

33 changes: 18 additions & 15 deletions dist/AXJ.tiny.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*!
AXJ - v1.0.18 - 2015-08-22
AXJ - v1.0.18 - 2015-08-23
*/
/*!
AXJ - v1.0.18 - 2015-08-22
AXJ - v1.0.18 - 2015-08-23
*/

if(!window.AXConfig){
Expand Down Expand Up @@ -8292,10 +8292,6 @@ var AXInputConverter = Class.create(AXJ, {
},
bind: function (obj) {
var cfg = this.config;

if (!obj.id) {
obj.id = "AXInput-" + axf.getUniqueId();
}
if (!AXgetId(obj.id)) {
trace("bind 대상이 없어 bind 처리할 수 없습니다.");
return;
Expand Down Expand Up @@ -12744,6 +12740,7 @@ axdom.fn.unbindInput = function (config) {
**/
axdom.fn.bindSearch = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
if (config == undefined) config = {};
config.id = this.id;
config.bindType = "search";
Expand Down Expand Up @@ -12771,6 +12768,7 @@ axdom.fn.bindSearch = function (config) {
**/
axdom.fn.bindNumber = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "number";
AXInput.bind(config);
Expand All @@ -12794,6 +12792,7 @@ axdom.fn.bindNumber = function (config) {
**/
axdom.fn.bindMoney = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "money";
AXInput.bind(config);
Expand Down Expand Up @@ -12856,6 +12855,7 @@ axdom.fn.bindMoney = function (config) {
**/
axdom.fn.bindSelector = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "selector";
AXInput.bind(config);
Expand Down Expand Up @@ -12901,6 +12901,7 @@ axdom.fn.bindSelectorBlur = function (config) {
**/
axdom.fn.bindSlider = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "slider";
AXInput.bind(config);
Expand Down Expand Up @@ -12930,6 +12931,7 @@ axdom.fn.bindSlider = function (config) {
**/
axdom.fn.bindTwinSlider = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "twinSlider";
AXInput.bind(config);
Expand All @@ -12956,6 +12958,7 @@ axdom.fn.bindTwinSlider = function (config) {
**/
axdom.fn.bindSwitch = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "switch";
AXInput.bind(config);
Expand Down Expand Up @@ -12987,6 +12990,7 @@ axdom.fn.bindSwitch = function (config) {
**/
axdom.fn.bindSegment = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "segment";
AXInput.bind(config);
Expand Down Expand Up @@ -13020,6 +13024,7 @@ axdom.fn.bindSegment = function (config) {
**/
axdom.fn.bindDate = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "date";
AXInput.bind(config);
Expand Down Expand Up @@ -13071,6 +13076,7 @@ axdom.fn.unbindDate = function (config) {
**/
axdom.fn.bindDateTime = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "date";
config.expandTime = true;
Expand Down Expand Up @@ -13107,6 +13113,7 @@ axdom.fn.bindDateTime = function (config) {
**/
axdom.fn.bindTwinDate = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "twinDate";
AXInput.bind(config);
Expand Down Expand Up @@ -13142,6 +13149,7 @@ axdom.fn.bindTwinDate = function (config) {
**/
axdom.fn.bindTwinDateTime = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "twinDateTime";
config.expandTime = true;
Expand All @@ -13162,6 +13170,7 @@ axdom.fn.bindTwinDateTime = function (config) {
**/
axdom.fn.bindPlaceHolder = function (config) {
axf.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "placeHolder";
AXInput.bind(config);
Expand Down Expand Up @@ -13301,10 +13310,6 @@ var AXInputConverterPro = Class.create(AXJ, {
},
bind: function (obj) {
var cfg = this.config;

if (!obj.id) {
obj.id = "AXInputPro-" + axf.getUniqueId();
}
if (!AXgetId(obj.id)) {
trace("bind 대상이 없어 bind 처리할 수 없습니다.");
return;
Expand Down Expand Up @@ -14881,6 +14886,7 @@ AXInputPro.setConfig({ targetID: "inputBasic" });
*/
axdom.fn.bindPattern = function(config){
axf.each(this, function () {
if(!this.id) this.id = "AXInputPro-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "pattern";
AXInputPro.bind(config);
Expand Down Expand Up @@ -14998,6 +15004,7 @@ axdom.fn.bindPatternGetDisplayText = function(){
*/
axdom.fn.bindTagSelector = function(config){
axf.each(this, function () {
if(!this.id) this.id = "AXInputPro-" + axf.getUniqueId();
config = config || {}; config.id = this.id;
config.bindType = "tagSelector";
AXInputPro.bind(config);
Expand Down Expand Up @@ -15133,11 +15140,6 @@ var AXSelectConverter = Class.create(AXJ, {
},
bind: function (obj) {
var cfg = this.config;

if (!obj.id) {
trace("bind 대상 ID가 없어 bind 처리할 수 없습니다.");
return;
}
if (!AXgetId(obj.id)) {
obj.id = "AXSelect-" + axf.getUniqueId();
}
Expand Down Expand Up @@ -16372,6 +16374,7 @@ axdom("Selector").bindSelect(configs);
*/
axdom.fn.bindSelect = function (config) {
axdom.each(this, function () {
if(!this.id) this.id = "AXInput-" + axf.getUniqueId();
if (config == undefined) config = {};
config.id = this.id;
AXSelect.bind(config);
Expand Down
10 changes: 5 additions & 5 deletions dist/AXJ.tinymin.js

Large diffs are not rendered by default.

Loading

0 comments on commit 0e38230

Please sign in to comment.