File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
const html_node = document . documentElement ,
2
- base_url = "https://bitrequest.github.io" ;
2
+ b_url = "https://bitrequest.github.io" ;
3
3
4
4
document . addEventListener ( "DOMContentLoaded" , function ( ) {
5
5
checkout ( ) ;
@@ -40,7 +40,7 @@ function iframe_loaded() {
40
40
requestframe . addEventListener ( "load" , function ( ) {
41
41
const frame_source = requestframe . getAttribute ( "src" ) ;
42
42
if ( frame_source ) {
43
- if ( frame_source === base_url ) {
43
+ if ( frame_source === b_url ) {
44
44
return
45
45
}
46
46
showframe ( ) ;
@@ -95,7 +95,7 @@ function closeframe() {
95
95
html_node . classList . remove ( "showframe" ) ;
96
96
const iframe = document . querySelector ( "#br_framebox iframe" ) ;
97
97
if ( iframe ) {
98
- iframe . setAttribute ( "src" , base_url ) ;
98
+ iframe . setAttribute ( "src" , b_url ) ;
99
99
}
100
100
} , 400 ) ;
101
101
}
You can’t perform that action at this time.
0 commit comments