Console error warning when running ionic app

0

I created an app by the ionic creator. I have a form to register and when clicking on any field of the form the following warning appears in the console:

  

'webkitMovementX' is deprecated. Please use 'movementX' instead. ........ ionic.bundle.js: 1173

I've already been given the suggestion to update the ionic, I've updated the lib, too, and it was for the Ionic version, v1.2.4-nightly-1917, which has to be v1.2.4-nightly-2019, at that they told me. When I tried to reinstall the ionic, this message appeared:

Iupdatedthenpmandastuffedthingwasupdatedtb.Andintheend,thisappears:YouseetheERRS!?

Does anyone have any ideas or suggestions?

    
asked by anonymous 25.01.2016 / 18:49

2 answers

0

I have already experienced a similar error and at least in my case it was a user permission problem. Try running the following command:

sudo chown -R meuusuario /usr/local/lib/

Then install the cord and ionic:

npm install -g cordova ionic
    
13.10.2016 / 17:00
-1

In your application you are using the "webkitMovementX" function that is out of date, use the movementX.

This is just a warning, not a mistake. This function may have issues that have been fixed in the newer version.

    
25.01.2016 / 18:52