@@ -23,11 +23,11 @@ function currentPackage(){
23
23
function httpGetAsync ( targetUrl , callback )
24
24
{
25
25
var xmlHttp = new XMLHttpRequest ( ) ;
26
- xmlHttp . onreadystatechange = function ( ) {
26
+ xmlHttp . onreadystatechange = function ( ) {
27
27
if ( xmlHttp . readyState == 4 && xmlHttp . status == 200 )
28
28
callback ( xmlHttp . responseText ) ;
29
29
}
30
- xmlHttp . open ( "GET" , targetUrl , true ) ; // true for asynchronous
30
+ xmlHttp . open ( "GET" , targetUrl , true ) ; // true for asynchronous
31
31
xmlHttp . send ( null ) ;
32
32
}
33
33
@@ -45,8 +45,8 @@ function hideSelectors(selectors){
45
45
46
46
function populateOptions ( optionSelector , otherSelectors ) {
47
47
if ( currentPackage ( ) ) {
48
- var versionRequestUrl = "https://azuresdkdocs.blob. core.windows.net/$web /" + SELECTED_LANGUAGE + "/" + currentPackage ( ) + "/versioning/versions"
49
-
48
+ var versionRequestUrl = "https://azuresdkdocs.z19.web. core.windows.net/" + SELECTED_LANGUAGE + "/" + currentPackage ( ) + "/versioning/versions"
49
+
50
50
httpGetAsync ( versionRequestUrl , function ( responseText ) {
51
51
if ( responseText ) {
52
52
options = responseText . match ( / [ ^ \r \n ] + / g)
@@ -68,7 +68,7 @@ function populateOptions(optionSelector, otherSelectors){
68
68
69
69
function populateVersionDropDown ( selector , values ) {
70
70
var select = $ ( selector )
71
-
71
+
72
72
$ ( 'option' , select ) . remove ( )
73
73
74
74
$ . each ( values , function ( index , text ) {
@@ -80,17 +80,17 @@ function populateVersionDropDown(selector, values){
80
80
select . selectedIndex = 0
81
81
}
82
82
else {
83
- select . val ( version )
83
+ select . val ( version )
84
84
}
85
85
}
86
86
87
87
function getPackageUrl ( language , package , version ) {
88
- return "https://azuresdkdocs.blob. core.windows.net/$web /" + language + "/" + package + "/" + version + "/index.html"
88
+ return "https://azuresdkdocs.z19.web. core.windows.net/" + language + "/" + package + "/" + version + "/index.html"
89
89
}
90
90
91
91
function populateIndexList ( selector , packageName )
92
92
{
93
- url = "https://azuresdkdocs.blob.core .windows.net/$web /" + SELECTED_LANGUAGE + "/" + packageName + "/versioning/versions"
93
+ url = "https://azuresdkdocs.z19.web .windows.net/" + SELECTED_LANGUAGE + "/" + packageName + "/versioning/versions"
94
94
95
95
httpGetAsync ( url , function ( responseText ) {
96
96
if ( responseText ) {
0 commit comments