Phonegap/Cordova 3.1 Resetting plugins due to page load Phonegap/Cordova 3.1 Resetting plugins due to page load javascript javascript

Phonegap/Cordova 3.1 Resetting plugins due to page load


This is a duplicate of Resetting plugins due to page load - Issue on this very site.

It appears to be a known conflict with jQuery Mobile and similar libraries. Check the other post for a very simple remedy to this.

EDIT:

Thanks and I stand corrected, @bart_88. I looked in the Cordova project code and see the following:

- (void)webViewDidStartLoad:(UIWebView*)theWebView {   NSLog(@"Resetting plugins due to page load.");   [_commandQueue resetRequestId];   [[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:CDVPluginResetNotification object:self.webView]];  }

It appears that this code will be hit (CDVViewController) no matter what, so the message you are seeing is just a new NSLog entry that can be ignored.