virtual-world-framework / vwf

Virtual World Framework
https://virtual.wf
Other
142 stars 53 forks source link

the "find(...)" function is not returning the correct application root node. #501

Closed arielayb closed 9 years ago

arielayb commented 9 years ago

Hi!

I stumbled upon an issue where I am using the the find(...) function in the latest VWF build 7.0. When I try to find the application root node below this code snippet, I get an undefined for my canvas variable:

debugger;
var sceneNode = vwf_view.kernel.find("", "/")[0];

var canvas = $('#'+ sceneNode).get(0);

NOTE: When I use vwf.find(...), I do receive some sort of application root node, "/index.vwf", but the Jquery Sizzle gets an exception as well. Any insight or help on this issue would suffice.

Thank you!