File tree 3 files changed +2
-5
lines changed
src/MatBlazor.Web/src/matTabBar
3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 23
23
// https://username.github.io/repo-name/one/two?a=b&c=d#qwe becomes
24
24
// https://username.github.io/repo-name/?p=/one/two&q=a=b~and~c=d#qwe
25
25
// Otherwise, leave segmentCount as 0.
26
- var segmentCount = 1 ;
26
+ var segmentCount = 0 ;
27
27
28
28
var l = window . location ;
29
29
l . replace (
Original file line number Diff line number Diff line change 27
27
// When the single page app is loaded further down in this file,
28
28
// the correct url will be waiting in the browser's history for
29
29
// the single page app to route accordingly.
30
- ( function ( l ) {
31
- debugger ;
30
+ ( function ( l ) {
32
31
if ( l . search ) {
33
32
var q = { } ;
34
33
l . search . slice ( 1 ) . split ( '&' ) . forEach ( function ( v ) {
Original file line number Diff line number Diff line change 1
1
import './matTabBar.scss' ;
2
2
3
3
4
-
5
-
6
4
export function init ( ref , component ) {
7
5
ref . matBlazorRef = new MDCTabBar ( ref ) ;
8
6
You can’t perform that action at this time.
0 commit comments