@@ -13,7 +13,7 @@ export const exampleRoutes: Routes = [
1313 srcUrl : `${ srcUrlBaseApp } /simple-split/simple-split.component.ts` ,
1414 } ,
1515 path : 'simple-split' ,
16- loadChildren : ( ) => import ( './simple/simple.module' ) . then ( ( m ) => m . SimpleModule ) ,
16+ loadChildren : ( ) => import ( './simple-split /simple-split .module' ) . then ( ( m ) => m . SimpleSplitModule ) ,
1717 } ,
1818 {
1919 data : {
@@ -37,7 +37,7 @@ export const exampleRoutes: Routes = [
3737 data : {
3838 type : ExampleEnum . IFRAME ,
3939 label : 'Split containing iframes' ,
40- srcUrl : `${ srcUrlBaseApp } iframe.route .component.ts` ,
40+ srcUrl : `${ srcUrlBaseApp } /iframes/iframes .component.ts` ,
4141 } ,
4242 path : 'iframes' ,
4343 loadChildren : ( ) => import ( './iframes/iframes.module' ) . then ( ( m ) => m . IframesModule ) ,
@@ -46,7 +46,7 @@ export const exampleRoutes: Routes = [
4646 data : {
4747 type : ExampleEnum . TRANSITION ,
4848 label : 'Split with transitions' ,
49- srcUrl : `${ srcUrlBaseApp } transitions.route .component.ts` ,
49+ srcUrl : `${ srcUrlBaseApp } /split- transitions/split-transitions .component.ts` ,
5050 } ,
5151 path : 'split-transitions' ,
5252 loadChildren : ( ) => import ( './split-transitions/split-transitions.module' ) . then ( ( m ) => m . SplitTransitionsModule ) ,
@@ -55,7 +55,7 @@ export const exampleRoutes: Routes = [
5555 data : {
5656 type : ExampleEnum . SYNC ,
5757 label : 'Split synchronized' ,
58- srcUrl : `${ srcUrlBaseApp } sync.route .component.ts` ,
58+ srcUrl : `${ srcUrlBaseApp } / sync-split/sync-split .component.ts` ,
5959 } ,
6060 path : 'sync-split' ,
6161 loadChildren : ( ) => import ( './sync-split/sync-split.module' ) . then ( ( m ) => m . SyncSplitModule ) ,
@@ -64,7 +64,7 @@ export const exampleRoutes: Routes = [
6464 data : {
6565 type : ExampleEnum . STYLE ,
6666 label : 'Split with custom gutter style' ,
67- srcUrl : `${ srcUrlBaseApp } customGutterStyle.route .component.ts` ,
67+ srcUrl : `${ srcUrlBaseApp } /custom-gutter-style/custom-gutter-style .component.ts` ,
6868 } ,
6969 path : 'custom-gutter-style' ,
7070 loadChildren : ( ) =>
@@ -74,7 +74,7 @@ export const exampleRoutes: Routes = [
7474 data : {
7575 type : ExampleEnum . TOGGLE ,
7676 label : 'Toggling areas using <code>[visible]</code> and <code>*ngIf</code>' ,
77- srcUrl : `${ srcUrlBaseApp } togglingDomAndVisible.route .component.ts` ,
77+ srcUrl : `${ srcUrlBaseApp } /toggling-dom-and-visibility/toggling-dom-and-visibility .component.ts` ,
7878 } ,
7979 path : 'toggling-dom-and-visibility' ,
8080 loadChildren : ( ) =>
@@ -86,7 +86,7 @@ export const exampleRoutes: Routes = [
8686 data : {
8787 type : ExampleEnum . COLLAPSE ,
8888 label : 'Collapse/Expand a specific area' ,
89- srcUrl : `${ srcUrlBaseApp } collapseExpandArea.route .component.ts` ,
89+ srcUrl : `${ srcUrlBaseApp } /collapse-expand/collapse-expand .component.ts` ,
9090 } ,
9191 path : 'collapse-expand' ,
9292 loadChildren : ( ) => import ( './collapse-expand/collapse-expand.module' ) . then ( ( m ) => m . CollapseExpandModule ) ,
@@ -95,7 +95,7 @@ export const exampleRoutes: Routes = [
9595 data : {
9696 type : ExampleEnum . CLICK ,
9797 label : 'Roll/unroll area on <code>(gutterClick)</code> event' ,
98- srcUrl : `${ srcUrlBaseApp } gutterClick.route .component.ts` ,
98+ srcUrl : `${ srcUrlBaseApp } /gutter-click-roll-unroll/gutter-click-roll-unroll .component.ts` ,
9999 } ,
100100 path : 'gutter-click-roll-unroll' ,
101101 loadChildren : ( ) =>
@@ -105,7 +105,7 @@ export const exampleRoutes: Routes = [
105105 data : {
106106 type : ExampleEnum . CODE ,
107107 label : 'Access and interact <code>SplitComponent</code> from TS class' ,
108- srcUrl : `${ srcUrlBaseApp } classAccess.route .component.ts` ,
108+ srcUrl : `${ srcUrlBaseApp } /access-from-class/access-from-class .component.ts` ,
109109 } ,
110110 path : 'access-from-class' ,
111111 loadChildren : ( ) => import ( './access-from-class/access-from-class.module' ) . then ( ( m ) => m . AccessFromClassModule ) ,
@@ -114,7 +114,7 @@ export const exampleRoutes: Routes = [
114114 data : {
115115 type : ExampleEnum . GEEK ,
116116 label : 'Geek demo (100% dynamic)' ,
117- srcUrl : `${ srcUrlBaseApp } geekDemo.route .component.ts` ,
117+ srcUrl : `${ srcUrlBaseApp } /geek-demo/geek-demo .component.ts` ,
118118 } ,
119119 path : 'geek-demo' ,
120120 loadChildren : ( ) => import ( './geek-demo/geek-demo.module' ) . then ( ( m ) => m . GeekDemoModule ) ,
@@ -123,7 +123,7 @@ export const exampleRoutes: Routes = [
123123 data : {
124124 type : ExampleEnum . DIR ,
125125 label : 'Split inside right to left (RTL) page' ,
126- srcUrl : `${ srcUrlBaseApp } dirRtl.route .component.ts` ,
126+ srcUrl : `${ srcUrlBaseApp } /dir-rtl/dir-rtl .component.ts` ,
127127 } ,
128128 path : 'dir-rtl' ,
129129 loadChildren : ( ) => import ( './dir-rtl/dir-rtl.module' ) . then ( ( m ) => m . DirRtlModule ) ,
@@ -132,7 +132,7 @@ export const exampleRoutes: Routes = [
132132 data : {
133133 type : ExampleEnum . WORKSPACE ,
134134 label : 'Fullscreen workspace saved in localStorage' ,
135- srcUrl : `${ srcUrlBaseApp } workspaceLocalstorage.route .component.ts` ,
135+ srcUrl : `${ srcUrlBaseApp } /workspace-localstorage/workspace-localstorage .component.ts` ,
136136 } ,
137137 path : 'workspace-localstorage' ,
138138 loadChildren : ( ) =>
0 commit comments