Apache Cordova problems
I am using the polymer component on the platform and it works perfectly , because of a need for the application to run on tablets , migrate apache cordova
under the platform apache cordova me the following problem occurs:
Uncaught paper-datatable.html:514 SyntaxError : missing) after argument list
Uncaught paper-datatable-card.html:398 SyntaxError : missing) after argument list
Check the source code datatable paper and find no answer to the problem, could someone help solve the problem
Probably the webview on the phone is not supporting the ES6 syntax that is used in the javascript parts of the component. You can extract the javascript and transpile it with bable to ES5.
Another possible solution would be to exchange your webview and use the crosswalk project for that (https://crosswalk-project.org/). It provides you a state of the art rendering engine (ES6 included) across multiple platforms and therefore also reduces the testing effort. The only downside is that the whole project size is increased.