File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ DigitalSandboxWrapper.prototype =
5454 _vars : function ( )
5555 {
5656 this . ver = {
57- date : '2016-06-20 ' ,
58- number : '1.2.0 ' ,
57+ date : '2016-07-01 ' ,
58+ number : '1.2.1 ' ,
5959 product : 'Digital Sandbox' ,
6060 type : 'final'
6161 } ;
@@ -72,6 +72,8 @@ DigitalSandboxWrapper.prototype =
7272 this . url . type = / ^ h t t p s ? : \/ \/ / i. test ( this . url . query ) ? 'ext' : 'int' ;
7373 this . url . src = './apps.html' ;
7474
75+ console . log ( this . url ) ;
76+
7577 switch ( this . url . type )
7678 {
7779 case 'ext' :
@@ -81,10 +83,12 @@ DigitalSandboxWrapper.prototype =
8183 case 'int' :
8284 if ( / ^ ( [ \w - : ] + ) (?: \/ ( [ \w - : ] * ) ) ? $ / . test ( this . url . query ) )
8385 {
84- this . url . app = RegExp . $1 . replace ( / \: / g, '/' ) ;
8586 this . url . index = RegExp . $2 || 'index' ;
87+ this . url . app = RegExp . $1 . replace ( / \: / g, '/' ) ;
8688 this . url . ext = 'html' ;
8789 this . url . src = './frontend/apps/' + this . url . app + '/' + this . url . index + '.' + this . url . ext ;
90+
91+ console . log ( this . url ) ;
8892 }
8993 break ;
9094 }
You can’t perform that action at this time.
0 commit comments