I am using a jquery library, here http://www.jqueryscript.net/menu/iPod-Style-jQuery-Sliding-Drill-Down-Menu-Plugin.html, and I'm trying to add it on my app. These are my import statements:
app.import('other_components/drilldown/css/linkes_drilldown.css');
app.import('other_components/drilldown/src/linkes_drilldown.js');
To be use to use that library, the function linkesDrillDown()
has to be called as $('.drillDownMenu').linkesDrillDown();
. When calling this function, the following error is being produced:
undefined is not a function
which basically means that the library is not being loaded. Any idea, is there anything wrong with the import statements?