diff options
author | liamfallon <liam.fallon@ericsson.com> | 2018-07-18 17:21:39 +0100 |
---|---|---|
committer | liamfallon <liam.fallon@ericsson.com> | 2018-07-19 11:03:17 +0100 |
commit | e1444458ba432bede43a661e6b74ea74fb8b0019 (patch) | |
tree | cd9652419c4f44503d3415a51aff2d05bcd40a57 /client/client-deployment/src/main | |
parent | dcae33d8d9a3dcb8a9249d5d33f103f1e97d2e6c (diff) |
Fix security vulnerability, upgrad jquery version
The version of jquery used in the APEX client was old
and had a security vulnerability. THis review updates the
versino of jquery to a newere version that does not have
a vulnerability.
Issue-ID: POLICY-905
Change-Id: Iefa5202ca80ba03d3a6ab84a693fa8d3da21c536
Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'client/client-deployment/src/main')
-rw-r--r-- | client/client-deployment/src/main/resources/webapp/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client-deployment/src/main/resources/webapp/index.html b/client/client-deployment/src/main/resources/webapp/index.html index 2ae25f901..63c304fdd 100644 --- a/client/client-deployment/src/main/resources/webapp/index.html +++ b/client/client-deployment/src/main/resources/webapp/index.html @@ -74,7 +74,7 @@ </div> <!-- jQuery --> - <script src="jquery/jquery-1.12.4.js"></script> + <script src="jquery/jquery-3.3.1.min.js"></script> <!-- Apex services client JS files --> <script type="text/javascript" src="js/ApexAjax.js"></script> |