We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1837fc commit 0fdc278Copy full SHA for 0fdc278
release/scripts/demofunctions.js
@@ -919,7 +919,9 @@ function startDemo(target) {
919
if (url.indexOf('angular') != -1) {
920
isnonpopupdemo = true;
921
}
922
-
+ if (url.indexOf('blazor') != -1) {
923
+ isnonpopupdemo = true;
924
+ }
925
if (this.isTouchDevice && url.indexOf('chart') == -1) isnonpopupdemo = false;
926
if (that.mobile) {
927
@@ -1022,6 +1024,9 @@ function startDemo(target) {
1022
1024
else if (url.toString().indexOf('blazor-') >= 0) {
1023
1025
var w = url.toString().split('/');
1026
var wIndex = w.indexOf('blazor');
1027
+ if (wIndex<0) {
1028
+ wIndex = w.indexOf('release');
1029
1030
if (wIndex<0) {
1031
wIndex = w.indexOf('blazor.jqwidgets.com');
1032
0 commit comments