@@ -23,11 +23,11 @@ function currentPackage(){
2323function httpGetAsync ( targetUrl , callback )
2424{
2525 var xmlHttp = new XMLHttpRequest ( ) ;
26- xmlHttp . onreadystatechange = function ( ) {
26+ xmlHttp . onreadystatechange = function ( ) {
2727 if ( xmlHttp . readyState == 4 && xmlHttp . status == 200 )
2828 callback ( xmlHttp . responseText ) ;
2929 }
30- xmlHttp . open ( "GET" , targetUrl , true ) ; // true for asynchronous
30+ xmlHttp . open ( "GET" , targetUrl , true ) ; // true for asynchronous
3131 xmlHttp . send ( null ) ;
3232}
3333
@@ -45,8 +45,8 @@ function hideSelectors(selectors){
4545
4646function populateOptions ( optionSelector , otherSelectors ) {
4747 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+
5050 httpGetAsync ( versionRequestUrl , function ( responseText ) {
5151 if ( responseText ) {
5252 options = responseText . match ( / [ ^ \r \n ] + / g)
@@ -68,7 +68,7 @@ function populateOptions(optionSelector, otherSelectors){
6868
6969function populateVersionDropDown ( selector , values ) {
7070 var select = $ ( selector )
71-
71+
7272 $ ( 'option' , select ) . remove ( )
7373
7474 $ . each ( values , function ( index , text ) {
@@ -80,17 +80,17 @@ function populateVersionDropDown(selector, values){
8080 select . selectedIndex = 0
8181 }
8282 else {
83- select . val ( version )
83+ select . val ( version )
8484 }
8585}
8686
8787function 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"
8989}
9090
9191function populateIndexList ( selector , packageName )
9292{
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"
9494
9595 httpGetAsync ( url , function ( responseText ) {
9696 if ( responseText ) {
0 commit comments