Giter VIP home page Giter VIP logo

my-class's People

Contributors

jiem avatar knpwrs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

my-class's Issues

Simplify parent method call

Hi
Actually this is the simple and best performance class definition in javascript. I have analised it and compared with other javascript libs.
Now in my opitionion the best would be to simplyfy parent method access from child. For example: if now it is Child.Super.prototype.setAddress.call(this);
make something like this:
this.parent.setAddress.call(this, 'France', city, street);

I will try to do that.

my.Class does not inherit constructors by default

I don't know if this is expected behavior or not, but at least it was unexpected (and undesired) for me. The behavior should be changed or clarified in the documentation.

Although my.Class inherits methods and properties fine, the constructor is skipped, defaulting to an empty function in all cases.

This is due to this code:

if (body.constructor === Object) {
  Class = function() {};
} else {
  Class = body.constructor;
  delete body.constructor;
}

To get constructor inheritance I changed that into this code:

if (body.constructor === Object) {
  if (SuperClass === null) {
    Class = function() { };
  } else {
    Class = function() {
      SuperClass.apply(this, arguments);
    };
  }
} else {
  Class = body.constructor;
  delete body.constructor;
}

in $.ajax() how to read this.id

in $.ajax() how to read this.id

var PageLoader = my.Class({
index:0,
count:0,
id:$.uuid(),
constructor: function(url) {
this.url = url;
var _self = this;

         $.ajax({
               url: this.url,
               success: function(msg){
                 alert(this.id)      // this is  error
               }
            });

    } 

});

Broken links

All the links to http://myjs.fr are broken. It's a petty because the examples and explanations there are very useful and much more informative than the readme file on github.
Is there an option to restore the broken links?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.