Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
mycard
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
syntax_j
mycard
Commits
602ce234
Commit
602ce234
authored
Oct 20, 2016
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ygopro
parent
56b61486
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
app/app-detail.component.html
app/app-detail.component.html
+0
-9
app/ygopro.component.html
app/ygopro.component.html
+1
-1
app/ygopro.component.ts
app/ygopro.component.ts
+9
-0
No files found.
app/app-detail.component.html
View file @
602ce234
...
@@ -88,15 +88,6 @@
...
@@ -88,15 +88,6 @@
</table>
</table>
</div>
</div>
<
!==
DEBUG
--
>
<pre
class=
"debug"
>
{{appsService.downloadsInfo | json}}
{{appsService.installConfig | json}}
{{appsService.tarQueue | json}}
{{appsService.waitInstallQueue | json}}
</pre>
<button
(click)=
"appsService.doTar()"
>
DOTAR
</button>
<!-- Modal -->
<!-- Modal -->
<div
class=
"modal fade"
id=
"install-modal"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
<div
class=
"modal fade"
id=
"install-modal"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
aria-hidden=
"true"
>
...
...
app/ygopro.component.html
View file @
602ce234
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
<div>
<div>
<button
type=
"button"
class=
"btn btn-primary"
>
竞技匹配
</button>
<button
type=
"button"
class=
"btn btn-primary"
>
竞技匹配
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
娱乐匹配
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
娱乐匹配
</button>
<
!--<button type="button" class="btn btn-secondary" data-toggle="modal" data-target="#game-create-modal">创建房间</button>--
>
<
button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-create-modal"
>
创建房间
</button
>
<button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-list-modal"
>
房间列表
</button>
<button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-list-modal"
>
房间列表
</button>
<button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-create-windbot"
>
单人模式
</button>
<button
type=
"button"
class=
"btn btn-secondary"
data-toggle=
"modal"
data-target=
"#game-create-windbot"
>
单人模式
</button>
<button
(click)=
"appsService.browse(routingService.app)"
type=
"button"
class=
"btn btn-secondary"
>
浏览本地文件
</button>
<button
(click)=
"appsService.browse(routingService.app)"
type=
"button"
class=
"btn btn-secondary"
>
浏览本地文件
</button>
...
...
app/ygopro.component.ts
View file @
602ce234
...
@@ -4,6 +4,10 @@
...
@@ -4,6 +4,10 @@
import
{
Component
}
from
'
@angular/core
'
;
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
"
./apps.service
"
;
import
{
AppsService
}
from
"
./apps.service
"
;
import
{
RoutingService
}
from
"
./routing.service
"
;
import
{
RoutingService
}
from
"
./routing.service
"
;
declare
var
System
;
const
fs
=
System
.
_nodeRequire
(
'
fs
'
);
@
Component
({
@
Component
({
selector
:
'
ygopro
'
,
selector
:
'
ygopro
'
,
templateUrl
:
'
app/ygopro.component.html
'
,
templateUrl
:
'
app/ygopro.component.html
'
,
...
@@ -12,4 +16,9 @@ import {RoutingService} from "./routing.service";
...
@@ -12,4 +16,9 @@ import {RoutingService} from "./routing.service";
export
class
YGOProComponent
{
export
class
YGOProComponent
{
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
}
}
decks
()
{
return
new
Promise
(()
=>
{
fs
.
readdir
()
})
}
}
}
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