jurisv / nodejs.extdirect

Ext.Direct connector for node.js (npm module)
41 stars 16 forks source link

Replace dots in classpath - router.js #37

Closed dec87 closed 7 years ago

dec87 commented 8 years ago

Replace dots in classpath - router.js apiPath = vPath.join(root, config.classPath, currentPacket.action.replace('.', slash)) + '.js'; to apiPath = vPath.join(root, config.classPath, currentPacket.action.replace(/\./g, slash)) + '.js';

jurisv commented 7 years ago

implemented