You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2021/09/20 16:14:12 UTC

[incubator-ponymail-foal] branch master updated: prevent jquery mobile from changing the UI

This is an automated email from the ASF dual-hosted git repository.

humbedooh pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail-foal.git


The following commit(s) were added to refs/heads/master by this push:
     new 8c97e9a  prevent jquery mobile from changing the UI
8c97e9a is described below

commit 8c97e9a29d174eb3c526c06b13374caa6d3a4931
Author: Daniel Gruno <hu...@apache.org>
AuthorDate: Mon Sep 20 11:14:03 2021 -0500

    prevent jquery mobile from changing the UI
---
 webui/list.html | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/webui/list.html b/webui/list.html
index d3cfb4e..7699f46 100644
--- a/webui/list.html
+++ b/webui/list.html
@@ -159,6 +159,11 @@ the License. -->
       </div>
     </div>
     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
+    <script type="text/javascript">
+      $(document).on("mobileinit", function() {
+        $.mobile.keepNative = "input";
+      });
+    </script>
     <script src="js/jquery.mobile-1.4.5.min.js"
             integrity="sha256-Lsk+CDPOzTapLoAzWW0G/WeQeViS3FMzywpzPZV8SXk="></script>