Skip to content

Commit

Permalink
Rename to
Browse files Browse the repository at this point in the history
  • Loading branch information
tnhu committed May 27, 2015
1 parent edf84da commit 7858c68
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
v2.4.5 May 26, 2015
----------------------------------------------------------------
* Rename $static to $statics ($statics will be removed in 2.5.0)

v2.4.2 May 22, 2015
----------------------------------------------------------------
* Fix undefined issue caused by getter/setter impl

v2.4.1 Apr 25, 2015
----------------------------------------------------------------
* Merge Milos Zikic's getter/setter support
Expand Down Expand Up @@ -84,4 +92,4 @@ v1.2 June 30 2011
v1.2b November 26 2010
----------------------------------------------------------------
* Initial release. A complete new look from version 1.2a which
was developed for browsers.
was developed for browsers.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ var Person = Class({
this.name = name;
this.age = age;
},

// Getter/Setter
address: {
get: function() {
Expand Down Expand Up @@ -143,7 +143,7 @@ Util.echo(2012); // 2012

``` javascript
var Person = Class({
$statics: {
$static: {
MIN_AGE: 1,
MAX_AGE: 150,

Expand Down

0 comments on commit 7858c68

Please sign in to comment.