Toggle navigation
Toggle navigation
This project
Loading...
Sign in
오윤석
/
maplespec.ga
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
4
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
오윤석
2020-06-07 21:56:44 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e2ff511b66aeca6c5b54a6a6145f5056893c4d81
e2ff511b
1 parent
bad1dad5
fix: 심볼이 다 채워지지 않는 경우 NaN으로 표시되는 오류
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
app/node/routes/character.js
app/node/routes/character.js
View file @
e2ff511
...
...
@@ -110,7 +110,8 @@ const analyzeEquipment = async function(nickname, characterCode, job) {
let
majorArcane
=
0
;
const
arcaneURLs
=
[];
$
(
".tab03_con_wrap .arcane_weapon_wrap .item_pot li span a"
).
each
(
async
function
()
{
arcaneURLs
.
push
(
"https://maplestory.nexon.com"
+
$
(
this
).
attr
(
"href"
));
if
(
!!
$
(
this
).
attr
(
"href"
))
arcaneURLs
.
push
(
"https://maplestory.nexon.com"
+
$
(
this
).
attr
(
"href"
));
});
for
(
let
i
=
0
;
i
<
arcaneURLs
.
length
;
i
++
)
{
...
...
Please
register
or
login
to post a comment