Using the first example at Page not found - Webix Jet (i.e., GitHub - webix-hub/jet-demos at 01_basic), I placed these files in the “public” folder of a Meteor 1.2.1 project. I did not add any packages (including any Webix packages). I also had to put “/” in front of the file location of each of the header css and js files within index.html to get initial results.
I got a few errors in my Chrome browser:
- Uncaught SyntaxError: Unexpected token < (usually doesn’t seem to be a big deal)
- You have trailing comma or Null element in collection’s configuration (likely a big deal)
- Uncaught TypeError: Cannot read property ‘body’ of undefined (definitely a big deal)
Likely related to these three errors, Chrome showed some variances in its execution:
- (includes an extra "/", but nonetheless appears to evaluate correctly.
- (instead of "/start" and "/start", they should read "views/start" and "./views/start.js" . . . I believe this is creating an error).
- The following code (among several others) is not being added to the body:
Is it intended that Webix Jet be functional within Meteor?
Has anyone got Webix Jet to work within Meteor 1.2.1?
Thanks in advance for any response!
Jerry