Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
AUI-1194 - Build files
Browse files Browse the repository at this point in the history
  • Loading branch information
natecavanaugh committed May 1, 2014
1 parent 2dd502c commit 88d194e
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 32 deletions.
2 changes: 1 addition & 1 deletion build/aui-datatable/aui-datatable-base-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ A.Plugin.RecordsetSort.prototype._defSortFn = function(event) {
instance.set('lastSortProperties', event);
};

}, '@VERSION@' ,{skinnable:true, requires:['aui-base','datatable','plugin']});
}, '@VERSION@' ,{requires:['aui-base','datatable','plugin'], skinnable:true});
2 changes: 1 addition & 1 deletion build/aui-datatable/aui-datatable-base-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build/aui-datatable/aui-datatable-base.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,4 @@ A.Plugin.RecordsetSort.prototype._defSortFn = function(event) {
instance.set('lastSortProperties', event);
};

}, '@VERSION@' ,{skinnable:true, requires:['aui-base','datatable','plugin']});
}, '@VERSION@' ,{requires:['aui-base','datatable','plugin'], skinnable:true});
10 changes: 4 additions & 6 deletions build/aui-datatable/aui-datatable-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ A.Plugin.RecordsetSort.prototype._defSortFn = function(event) {
instance.set('lastSortProperties', event);
};

}, '@VERSION@' ,{skinnable:true, requires:['aui-base','datatable','plugin']});
}, '@VERSION@' ,{requires:['aui-base','datatable','plugin'], skinnable:true});
AUI.add('aui-datatable-events', function(A) {
// TODO - optimize code

Expand Down Expand Up @@ -1294,9 +1294,7 @@ var BaseOptionsCellEditor = A.Component.create({
var name = inputName.val();
var value = values.item(index).val();

if (name && value) {
options[value] = name;
}
options[value] = name;
});

instance.set(OPTIONS, options);
Expand Down Expand Up @@ -1834,7 +1832,7 @@ var DateCellEditor = A.Component.create({

A.DateCellEditor = DateCellEditor;

}, '@VERSION@' ,{skinnable:true, requires:['aui-calendar','aui-datatable-events','aui-toolbar','aui-form-validator','overlay','sortable']});
}, '@VERSION@' ,{requires:['aui-calendar','aui-datatable-events','aui-toolbar','aui-form-validator','overlay','sortable'], skinnable:true});
AUI.add('aui-datatable-selection', function(A) {
// TODO - add support for row/column selection

Expand Down Expand Up @@ -2260,7 +2258,7 @@ var DataTableSelection = A.Base.create("dataTableSelection", A.Plugin.Base, [],

A.namespace("Plugin").DataTableSelection = DataTableSelection;

}, '@VERSION@' ,{skinnable:true, requires:['aui-datatable-base']});
}, '@VERSION@' ,{requires:['aui-datatable-base'], skinnable:true});


AUI.add('aui-datatable', function(A){}, '@VERSION@' ,{skinnable:true, use:['aui-datatable-base','aui-datatable-events','aui-datatable-edit','aui-datatable-selection']});
Expand Down
6 changes: 2 additions & 4 deletions build/aui-datatable/aui-datatable-edit-debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -895,9 +895,7 @@ var BaseOptionsCellEditor = A.Component.create({
var name = inputName.val();
var value = values.item(index).val();

if (name && value) {
options[value] = name;
}
options[value] = name;
});

instance.set(OPTIONS, options);
Expand Down Expand Up @@ -1435,4 +1433,4 @@ var DateCellEditor = A.Component.create({

A.DateCellEditor = DateCellEditor;

}, '@VERSION@' ,{skinnable:true, requires:['aui-calendar','aui-datatable-events','aui-toolbar','aui-form-validator','overlay','sortable']});
}, '@VERSION@' ,{requires:['aui-calendar','aui-datatable-events','aui-toolbar','aui-form-validator','overlay','sortable'], skinnable:true});
Loading

0 comments on commit 88d194e

Please sign in to comment.