crosswalk-project / cordova-plugin-crosswalk-webview

Crosswalk WebView Cordova Plugin (UNMAINTAINED)
https://crosswalk-project.org/blog/crosswalk-final-release.html
Apache License 2.0
945 stars 350 forks source link

config.xml not working... #168

Open BrianMoreno1994 opened 7 years ago

BrianMoreno1994 commented 7 years ago

When ever I add this plugin, my config.xml doesn't seem to work. For example, in my config.xml I disable overscroll glow using the following:

<preference name="DisallowOverscroll" value="true" />

If I remove the plugin and rebuild the project everything works and the overscroll glow gets removed, however, when I add this plugin and build the project the overscroll glow comes back.

Another thing I saw is with my CSS, I completely remove the scrollbar using:

*::-webkit-scrollbar {
  width: 0px !important;
  background: transparent !important; /* make scrollbar transparent */
  display: none !important;
}

But yet again when I add this plugin the scrollbar is visible. Any idea on how to fix this?

ilteris commented 6 years ago

Have you found a workaround for this? I am having the same problem.