We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 120d9c8 commit 695151dCopy full SHA for 695151d
1 file changed
asdoc/templates/index.html
@@ -20,6 +20,17 @@
20
<script language="javascript" type="text/javascript">
21
<!--
22
window.onload=function(){
23
+ "use strict";
24
+ var d2=decodeURIComponent(document.location.search).toLowerCase();
25
+ if(
26
+ d2.indexOf('javascript:') > -1 ||
27
+ d2.indexOf('//') > -1 ||
28
+ d2.indexOf('..') > -1 ||
29
+ d2.indexOf(':') > -1
30
+ ){
31
+ return;
32
+ }
33
+
34
var d=document.location.search;
35
var args=d.substring(d.lastIndexOf('?')+1,d.length);
36
var classFrameContent=args;
0 commit comments