Skip to content

Commit a7e3c72

Browse files
committed
fix url redirection
1 parent f91db75 commit a7e3c72

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

docs/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
2424
// https://username.github.io/repo-name/?p=/one/two&q=a=b~and~c=d#qwe
2525
// Otherwise, leave segmentCount as 0.
26-
var segmentCount = 1;
26+
var segmentCount = 0;
2727

2828
var l = window.location;
2929
l.replace(

docs/index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@
2727
// When the single page app is loaded further down in this file,
2828
// the correct url will be waiting in the browser's history for
2929
// the single page app to route accordingly.
30-
(function(l) {
31-
debugger;
30+
(function(l) {
3231
if (l.search) {
3332
var q = {};
3433
l.search.slice(1).split('&').forEach(function(v) {

src/MatBlazor.Web/src/matTabBar/matTabBar.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import './matTabBar.scss';
22

33

4-
5-
64
export function init(ref, component) {
75
ref.matBlazorRef = new MDCTabBar(ref);
86

0 commit comments

Comments
 (0)