1
1
var LocationDispatcher = require ( '../dispatchers/LocationDispatcher' ) ;
2
+ var isAbsoluteURL = require ( '../utils/isAbsoluteURL' ) ;
2
3
var makePath = require ( '../utils/makePath' ) ;
3
4
5
+ function loadURL ( url ) {
6
+ window . location = url ;
7
+ }
8
+
4
9
/**
5
10
* Actions that modify the URL.
6
11
*/
@@ -16,21 +21,29 @@ var LocationActions = {
16
21
* a new URL onto the history stack.
17
22
*/
18
23
transitionTo : function ( to , params , query ) {
19
- LocationDispatcher . handleViewAction ( {
20
- type : LocationActions . PUSH ,
21
- path : makePath ( to , params , query )
22
- } ) ;
24
+ if ( isAbsoluteURL ( to ) ) {
25
+ loadURL ( to ) ;
26
+ } else {
27
+ LocationDispatcher . handleViewAction ( {
28
+ type : LocationActions . PUSH ,
29
+ path : makePath ( to , params , query )
30
+ } ) ;
31
+ }
23
32
} ,
24
33
25
34
/**
26
35
* Transitions to the URL specified in the arguments by replacing
27
36
* the current URL in the history stack.
28
37
*/
29
38
replaceWith : function ( to , params , query ) {
30
- LocationDispatcher . handleViewAction ( {
31
- type : LocationActions . REPLACE ,
32
- path : makePath ( to , params , query )
33
- } ) ;
39
+ if ( isAbsoluteURL ( to ) ) {
40
+ loadURL ( to ) ;
41
+ } else {
42
+ LocationDispatcher . handleViewAction ( {
43
+ type : LocationActions . REPLACE ,
44
+ path : makePath ( to , params , query )
45
+ } ) ;
46
+ }
34
47
} ,
35
48
36
49
/**
0 commit comments