UNPKG
tw-unity
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
javascript module for Unity Framework for Hybrid Application
tw-unity
/
src
/
pagemanager.ts
15 lines
(11 loc)
•
227 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
default
class
PageManager
{
constructor
(
public
platform
:
any
,
public
pages
:
string
[]
) {
this
.
pages
= [] }
current
(
) {
return
this
.
pages
[
this
.
pages
.
length
-
1
] }
goBack
(
) {
this
.
pages
.
pop
() } }