UNPKG
vchat
Version:
latest (0.9.12)
0.9.12
0.9.11
0.9.10
0.9.9
0.9.8
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
An experimental video chat server/client hybrid
github.com/mdconaway/vchat
mdconaway/vchat
vchat
/
app
/
router.js
16 lines
(12 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
Ember
from
'ember'
;
import
config
from
'./config/environment'
;
let
Router
=
Ember
.
Router
.
extend
({
location
: config.
locationType
});
Router
.
map
(
function
(
) {
this
.
route
(
'settings'
,
function
(
) {
this
.
route
(
'loading'
);
this
.
route
(
'openssl'
); }); });
export
default
Router
;