You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2017/05/13 11:35:04 UTC

nifi git commit: [NIFI-3830] force browsers to use URLSearchParams polyfill do to bugs and inconsistent browser implementations. This closes #1785

Repository: nifi
Updated Branches:
  refs/heads/master 382eef218 -> 09f6a7040


[NIFI-3830] force browsers to use URLSearchParams polyfill do to bugs and inconsistent browser implementations. This closes #1785


Project: http://git-wip-us.apache.org/repos/asf/nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/09f6a704
Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/09f6a704
Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/09f6a704

Branch: refs/heads/master
Commit: 09f6a7040cc99acb26a52cfee98e1e977afa863a
Parents: 382eef2
Author: Scott Aslan <sc...@gmail.com>
Authored: Thu May 11 15:53:43 2017 -0400
Committer: Matt Gilman <ma...@gmail.com>
Committed: Sat May 13 07:34:33 2017 -0400

----------------------------------------------------------------------
 .../nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp         | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/09f6a704/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp
----------------------------------------------------------------------
diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp
index 3afb0f0..1928f7a 100644
--- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp
+++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/WEB-INF/pages/canvas.jsp
@@ -40,6 +40,10 @@
         <link rel="stylesheet" href="fonts/flowfont/flowfont.css" type="text/css" />
         <link rel="stylesheet" href="assets/angular-material/angular-material.min.css" type="text/css" />
         <link rel="stylesheet" href="assets/font-awesome/css/font-awesome.min.css" type="text/css" />
+        <script>
+            //force browsers to use URLSearchParams polyfill do to bugs and inconsistent browser implementations
+            URLSearchParams = undefined;
+        </script>
         <script type="text/javascript" src="assets/url-search-params/build/url-search-params.js"></script>
         <script type="text/javascript" src="js/codemirror/lib/codemirror-compressed.js"></script>
         <script type="text/javascript" src="assets/d3/d3.min.js"></script>