Skip to content

Commit

Permalink
Build arraylist, calendar(-base), datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
lsmith committed Dec 2, 2011
1 parent b99f510 commit 79cf858
Show file tree
Hide file tree
Showing 18 changed files with 146 additions and 28 deletions.
4 changes: 3 additions & 1 deletion build/arraylist/arraylist-debug.js
Expand Up @@ -149,7 +149,9 @@ ArrayListProto = {
*/
ArrayListProto._item = ArrayListProto.item;

ArrayList.prototype = ArrayListProto;
// Mixed onto existing proto to preserve constructor NOT being an own property.
// This has bitten me when composing classes by enumerating, copying prototypes.
Y.mix(ArrayList.prototype, ArrayListProto);

Y.mix( ArrayList, {

Expand Down
2 changes: 1 addition & 1 deletion build/arraylist/arraylist-min.js

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

4 changes: 3 additions & 1 deletion build/arraylist/arraylist.js
Expand Up @@ -149,7 +149,9 @@ ArrayListProto = {
*/
ArrayListProto._item = ArrayListProto.item;

ArrayList.prototype = ArrayListProto;
// Mixed onto existing proto to preserve constructor NOT being an own property.
// This has bitten me when composing classes by enumerating, copying prototypes.
Y.mix(ArrayList.prototype, ArrayListProto);

Y.mix( ArrayList, {

Expand Down
2 changes: 1 addition & 1 deletion build/calendar-base/calendar-base-debug.js
Expand Up @@ -1641,4 +1641,4 @@ Y.CalendarBase = Y.extend( CalendarBase, Y.Widget, {
});


}, '@VERSION@' ,{requires:['widget', 'substitute', 'datatype-date', 'datatype-date-math', 'cssgrids'], lang:['en', 'ja', 'ru']});
}, '@VERSION@' ,{lang:['en', 'ja', 'ru'], requires:['widget', 'substitute', 'datatype-date', 'datatype-date-math', 'cssgrids']});
2 changes: 1 addition & 1 deletion build/calendar-base/calendar-base-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/calendar-base/calendar-base.js
Expand Up @@ -1641,4 +1641,4 @@ Y.CalendarBase = Y.extend( CalendarBase, Y.Widget, {
});


}, '@VERSION@' ,{requires:['widget', 'substitute', 'datatype-date', 'datatype-date-math', 'cssgrids'], lang:['en', 'ja', 'ru']});
}, '@VERSION@' ,{lang:['en', 'ja', 'ru'], requires:['widget', 'substitute', 'datatype-date', 'datatype-date-math', 'cssgrids']});
2 changes: 1 addition & 1 deletion build/calendar-base/lang/calendar-base_ja.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/calendar/calendar-debug.js
Expand Up @@ -354,4 +354,4 @@ Y.Calendar = Y.extend(Calendar, Y.CalendarBase, {
});


}, '@VERSION@' ,{requires:['calendar-base', 'calendarnavigator'], lang:['en', 'ja', 'ru']});
}, '@VERSION@' ,{lang:['en', 'ja', 'ru'], requires:['calendar-base', 'calendarnavigator']});
2 changes: 1 addition & 1 deletion build/calendar/calendar-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/calendar/calendar.js
Expand Up @@ -354,4 +354,4 @@ Y.Calendar = Y.extend(Calendar, Y.CalendarBase, {
});


}, '@VERSION@' ,{requires:['calendar-base', 'calendarnavigator'], lang:['en', 'ja', 'ru']});
}, '@VERSION@' ,{lang:['en', 'ja', 'ru'], requires:['calendar-base', 'calendarnavigator']});
2 changes: 1 addition & 1 deletion build/calendar/lang/calendar_ja.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/console/lang/console_ja.js

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

1 change: 1 addition & 0 deletions build/datatype-date-format/datatype-date-format-debug.js
Expand Up @@ -5,6 +5,7 @@ YUI.add('datatype-date-format', function(Y) {
* convenience methods for various JavaScript object types.
*
* @module datatype
* @main datatype
*/

/**
Expand Down
1 change: 1 addition & 0 deletions build/datatype-date-format/datatype-date-format.js
Expand Up @@ -5,6 +5,7 @@ YUI.add('datatype-date-format', function(Y) {
* convenience methods for various JavaScript object types.
*
* @module datatype
* @main datatype
*/

/**
Expand Down

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

2 changes: 1 addition & 1 deletion build/datatype-date-format/lang/datatype-date-format_ja.js

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

0 comments on commit 79cf858

Please sign in to comment.