Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
965bbe68
Commit
965bbe68
authored
Feb 05, 2021
by
Dominik Hebeler
Browse files
removed multiple debug outputs
parent
fa4da5ce
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
resources/js/donation.js
View file @
965bbe68
...
...
@@ -3,8 +3,7 @@ document.addEventListener("DOMContentLoaded", (event) => {
element
.
onclick
=
(
e
)
=>
{
setTimeout
(()
=>
{
document
.
querySelector
(
"
#custom-amount
"
).
focus
();
},
100
)
console
.
log
(
"
test
"
);
},
100
);
}
});
});
\ No newline at end of file
resources/js/result-saver.js
View file @
965bbe68
...
...
@@ -74,7 +74,6 @@ Results.prototype.sortResults = function () {
break
;
case
'
alphabetical
'
:
// by hostname
this
.
results
.
sort
(
function
(
a
,
b
)
{
console
.
log
(
a
.
hosterName
,
b
.
hosterName
);
if
(
b
.
hosterName
>
a
.
hosterName
)
return
-
1
;
if
(
b
.
hosterName
<
a
.
hosterName
)
return
1
;
return
0
;
...
...
resources/js/scriptResultPage.js
View file @
965bbe68
...
...
@@ -39,7 +39,6 @@ function botProtection() {
body
:
"
mm=
"
+
document
.
querySelector
(
'
meta[name="mm"]
'
).
content
})
.
then
(
response
=>
{
console
.
log
(
newtab
);
if
(
!
newtab
)
{
if
(
top
)
{
window
.
top
.
location
.
href
=
link
;
...
...
@@ -98,7 +97,6 @@ function loadMoreResults() {
fetch
(
updateUrl
)
.
then
(
response
=>
response
.
json
())
.
then
(
data
=>
{
console
.
log
(
data
);
// Check if we can clear the interval (once every searchengine has answered)
if
(
!
data
||
data
.
finished
)
{
clearInterval
(
resultLoader
);
...
...
resources/views/layouts/resultpage/verificationHeader.blade.php
View file @
965bbe68
...
...
@@ -2,5 +2,5 @@
<html
lang=
"{!! trans('staticPages.meta.language') !!}"
>
<head>
<meta
charset=
"UTF-8"
>
<link
rel=
"stylesheet"
href=
"/index.css?id={{ $key }}"
beforeLoad=
"console.log('test');"
>
<link
rel=
"stylesheet"
href=
"/index.css?id={{ $key }}"
>
<script
src=
"/index.js?id={{ $key }}"
></script>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment