Skip to content
This repository has been archived by the owner on Mar 6, 2019. It is now read-only.

Commit

Permalink
Fix trailing commas in o-attribute.js breaking minification.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluefeet committed Apr 14, 2013
1 parent eb5f044 commit b92191b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
0.0.5 : 2013-04-14
- Fix trailing commas in o-attribute.js breaking minification.

0.0.4 : 2013-04-14
- Remove the option definition property.
- Rename o.extend to o.augment.
Expand Down
6 changes: 3 additions & 3 deletions o-attribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
filter: function (val) { if (val === true) val = 'clear' + ucFirst( this.key() ); return val },
devoid: function () { return null }
},
proxies: { type: o.objectOfType( o.nonEmptyStringType() ) },
proxies: { type: o.objectOfType( o.nonEmptyStringType() ) }
};

var writers = {};
Expand Down Expand Up @@ -100,7 +100,7 @@
type: this.type(),
filter: this.filter(),
augments: this.augments(),
chain: this.chain(),
chain: this.chain()
}
);
}
Expand All @@ -112,7 +112,7 @@
this.valueKey(),
{
writer: this.writerMethod(),
reader: this.readerMethod(),
reader: this.readerMethod()
}
);
}
Expand Down

0 comments on commit b92191b

Please sign in to comment.