Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
libai
/
footsen
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
344c9e6c
authored
3 years ago
by
agan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改埋点
parent
8249e634
master
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
3 deletions
b/download.html
js/buriedPoint.js
b/download.html
View file @
344c9e6c
...
...
@@ -374,8 +374,14 @@
function
toDown
()
{
clickDownload
(
function
(
data
)
{
copyText
(
data
);
var
url
=
'https://big.bgp.ourpow.com/apk/nf/Release-'
+
data
+
'.apk'
;
var
mData
=
''
;
if
(
!
data
){
mData
=
andoridData
;
}
else
{
mData
=
data
.
AndroidChannel
}
copyText
(
mData
);
var
url
=
'https://big.bgp.ourpow.com/apk/nf/Release-'
+
mData
+
'.apk'
;
var
xhr
=
new
XMLHttpRequest
();
xhr
.
open
(
'GET'
,
url
);
xhr
.
send
();
...
...
This diff is collapsed.
Click to expand it.
js/buriedPoint.js
View file @
344c9e6c
...
...
@@ -42,7 +42,8 @@ function clickDownload(callback) {
lang
:
2
},
success
:
function
(
res
)
{
callback
&&
callback
(
res
.
AndroidChannel
);
var
mResult
=
JSON
.
parse
(
res
);
callback
&&
callback
(
mResult
.
result
);
}
})
}
...
...
This diff is collapsed.
Click to expand it.
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