-
Bug
-
Resolution: Fixed
-
Normal
-
8.0.1
-
None
-
None
-
ZK 8.0.2 S1
When trying to use protocol relative url in the zul header, current context path will be erroneously prefixed to the url, causing the browser to throw 404 error messages in the console.
given the following zul
<?link href='//fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'?> <zk> <!-- other stuff here --> </zk>
the following html is expected
<html> <head> <link href="//fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css"> </head> </html>
but instead, i got the following
<html> <head> <link href="/test-project//fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css"> </head> </html>
causing the browser to throw the 404 not found message in the browser console