• Just updated to actual firmware and got problems (function undefined)
    I'm pretty sure it worked fine with older version of firmware.

    function xyz(){
      var me = this;
      me.foo = foo;
      function foo(){}
    }
    

    After changing sequence it worked fine as before

    function xyz(){
      var me = this;
      function foo(){}
      me.foo = foo;
    }
    
About

Avatar for JumJum @JumJum started