From 69a7567efc4bd270b65f7fb243fdd4e9fb299ec0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauren=C5=A3iu=20Macovei?= Date: Tue, 29 Jul 2014 15:23:18 +0300 Subject: [PATCH 1/3] VS2013 --- src/Package.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Package.tt b/src/Package.tt index 8724ffd..5e3bdb2 100644 --- a/src/Package.tt +++ b/src/Package.tt @@ -11,7 +11,7 @@ A fast and lightest prototype inheritance when you can't use any complied library such as TypeScript or Google Closure DotNetWise - Better intellisense support for VS2013 (since VS2012 supports __proto__) + Better intellisense support for VS2013 (since VS2013 supports __proto__) inheritWith creator now automatically shows members added on constructor and inherited constructors Made use of intellisense.inheritXMLDoc so we automatically inherit XMLDoc from the first base class that has has one specified Fixed inheritWith to accept an object when __proto__ is available From e4bb55c572903135c03f7f3d6a5afc5aa2ae0042 Mon Sep 17 00:00:00 2001 From: Baciu Mihai Marius Date: Tue, 19 Aug 2014 17:40:59 +0300 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34593ff..fcadc7e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ var Car = Vechicle.inheritWith(function(base, baseCtor)){//define the "derrived base.draw.call(this);//optionally call the base class' draw method } } -}, Engine);//optionally specify extra mixins whose prortotype members will be copied to Car.prototype +}, Engine);//optionally specify extra mixins whose prototype members will be copied to Car.prototype //Define the Engine mixin function Engine() { From 2a7b338f5e7101c42fa31bc8d4873c56b7a8d7db Mon Sep 17 00:00:00 2001 From: dotnetwise Date: Sun, 21 Sep 2014 14:18:24 +0300 Subject: [PATCH 3/3] Corrected casing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fcadc7e..431803b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Javascript-fastClass +Javascript-FastClass ==================== A faster and easier way to define Javascript Prototypal Inheritance: `classes` and `mixins`