Replace some french comments by english ones.
[euphorik.git] / js / betterjs.js
index b4d0bb6..41d6223 100644 (file)
@@ -72,30 +72,3 @@ String.prototype.ltrim = function() {
 String.prototype.rtrim = function() {
        return this.replace(/\s+$/, "");
 };
-
-/**
-  * (Not use for the moment)
-  * See : http://www.coolpage.com/developer/javascript/Correct%20OOP%20for%20Javascript.html
-  *
-  * Example :
-  *
-  * function Mammal(name) {
-  *    this.name = name;
-  * }
-  *
-  * Cat.Inherits(Mammal);
-  * function Cat(name) {
-  *    this.Super(Mammal, name);
-  * }
-  */
-/*Object.prototype.Super = function(parent) {
-   if(arguments.length > 1) {
-      parent.apply( this, Array.prototype.slice.call( arguments, 1 ) );
-   } else {
-      parent.call( this );
-   }
-}
-Function.prototype.Inherits = function(parent) {
-   this.prototype = new parent();
-   this.prototype.constructor = this;
-}*/