Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Z
zeroing-libs
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
劳工
zeroing-libs
Commits
7e45c4dd
Commit
7e45c4dd
authored
Sep 28, 2020
by
lujinlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
-a
parent
1b305156
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
8 deletions
+4
-8
rockji-new.json
dist/customs/rockji-new.json
+1
-1
main.js
src/custom/rockji-new/debug/main.js
+1
-5
main.js.map
src/custom/rockji-new/debug/main.js.map
+1
-1
GameView.ts
src/custom/rockji-new/src/game/GameView.ts
+1
-1
No files found.
dist/customs/rockji-new.json
View file @
7e45c4dd
This diff is collapsed.
Click to expand it.
src/custom/rockji-new/debug/main.js
View file @
7e45c4dd
...
...
@@ -12,7 +12,6 @@
function
injectProps
(
p
)
{
engine
.
injectProp
(
props
,
p
);
}
//# sourceMappingURL=props.js.map
var
GameView
=
(
function
(
_super
)
{
tslib
.
__extends
(
GameView
,
_super
);
...
...
@@ -174,7 +173,7 @@
};
GameView
.
prototype
.
getPrizeUrl
=
function
(
pid
)
{
var
purl
=
""
;
for
(
var
i
=
0
;
i
<
3
;
i
++
)
{
for
(
var
i
=
0
;
i
<
this
.
prizes
.
length
;
i
++
)
{
if
(
this
.
prizes
[
i
].
prizeId
==
pid
)
{
return
this
.
prizes
[
i
].
icon
;
}
...
...
@@ -199,7 +198,6 @@
};
return
GameView
;
}(
engine
.
Container
));
//# sourceMappingURL=GameView.js.map
var
GameWrapper
=
(
function
(
_super
)
{
tslib
.
__extends
(
GameWrapper
,
_super
);
...
...
@@ -243,7 +241,6 @@
};
return
GameWrapper
;
}(
engine
.
Container
));
//# sourceMappingURL=GameWrapper.js.map
function
index
(
props
)
{
prepareProps
();
...
...
@@ -251,7 +248,6 @@
var
instance
=
new
GameWrapper
();
return
instance
;
}
//# sourceMappingURL=index.js.map
return
index
;
...
...
src/custom/rockji-new/debug/main.js.map
View file @
7e45c4dd
This diff is collapsed.
Click to expand it.
src/custom/rockji-new/src/game/GameView.ts
View file @
7e45c4dd
...
...
@@ -319,7 +319,7 @@ export default class GameView extends engine.Container {
private
getPrizeUrl
(
pid
:
string
):
string
{
let
purl
=
""
;
for
(
let
i
=
0
;
i
<
3
;
i
++
)
{
for
(
let
i
=
0
;
i
<
this
.
prizes
.
length
;
i
++
)
{
if
(
this
.
prizes
[
i
].
prizeId
==
pid
)
{
return
this
.
prizes
[
i
].
icon
;
}
...
...
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