Skip to content

Commit 3aa8510

Browse files
committed
docs(angular): fix html template
1 parent 8ae9a40 commit 3aa8510

File tree

4 files changed

+31
-37
lines changed

4 files changed

+31
-37
lines changed
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
<div class="container">
2-
<h2>{{title}}</h2>
3-
<div class="subtitle" [innerHTML]="subTitle"></div>
2+
<h2>Angular-Slickgrid - Demo Site</h2>
3+
<div class="subtitle">This site is to demo multiple usage of Angular-Slickgrid, choose an example from the left side menu</div>
44

55
<hr />
66

77
<h4>Quick intro</h4>
88
<p>
99
One of the best javascript datagrid
10-
<a href="https://github.com/mleibman/SlickGrid"
11-
target="_blank">SlickGrid</a> which was originally developed by &#64;mleibman is now available to Angular. I have
12-
tried, and used, a few datagrids and SlickGrid beats most of them in terms of functionalities
13-
and performance (it can easily even handle a million row).
10+
<a href="https://github.com/mleibman/SlickGrid" target="_blank">SlickGrid</a> which was originally developed by &#64;mleibman is now
11+
available to Angular. I have tried, and used, a few datagrids and SlickGrid beats most of them in terms of functionalities and
12+
performance (it can easily even handle a million row).
1413
</p>
1514
<h4>Documentation</h4>
1615
<p>
17-
<h3>Documentation</h3>
18-
Most of the info, news and documentation links are mostly available in the <a href="https://github.com/ghiscoding/slickgrid-universal">Slickgrid-Universal</a> project.
19-
Please consult the
20-
<a href="https://ghiscoding.gitbook.io/angular-slickgrid" target="_blank">Angular-Slickgrid - Docs</a>
21-
before opening any new issues. The
22-
<a href="https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start" target="_blank">Docs - Getting Started</a>
23-
is a great place to start with.
16+
The documentation is powered by GitBook and can be found at this link
17+
<a href="https://ghiscoding.gitbook.io/angular-slickgrid" target="_blank">Angular-Slickgrid - Documentation</a>, so be sure to consult
18+
it before opening any new issue.
19+
<br />
20+
The
21+
<a href="https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start" target="_blank">HOWTO - Quick Start</a>
22+
is the best starting point to get going with this library.
2423
</p>
2524

2625
<hr />
2726
Like my work? You can support me with caffeine :)
2827

2928
<br /><br />
3029

31-
<a href='https://ko-fi.com/ghiscoding'
32-
target='_blank'>
33-
<img height='36'
34-
style='border:0px;height:36px;'
35-
src='https://az743702.vo.msecnd.net/cdn/kofi2.png?v=0'
36-
border='0'
37-
alt='Buy Me a Coffee at ko-fi.com' />
30+
<a href="https://ko-fi.com/ghiscoding" target="_blank">
31+
<img
32+
height="36"
33+
style="border: 0px; height: 36px"
34+
src="https://az743702.vo.msecnd.net/cdn/kofi2.png?v=0"
35+
border="0"
36+
alt="Buy Me a Coffee at ko-fi.com"
37+
/>
3838
</a>
3939
</div>

bootstrap5-demo-with-locales/src/app/examples/home.component.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ import { Component } from '@angular/core';
44
templateUrl: './home.component.html',
55
standalone: false,
66
})
7-
export class HomeComponent {
8-
title = 'Angular-Slickgrid - Demo Site';
9-
subTitle = 'This site is to demo multiple usage of Angular-Slickgrid, choose an example from the left side menu';
10-
}
7+
export class HomeComponent { }

bootstrap5-demo-with-translate/src/app/examples/home.component.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="container">
2-
<h2>{{ title }}</h2>
3-
<div class="subtitle" [innerHTML]="subTitle"></div>
2+
<h2>Angular-Slickgrid - Demo Site</h2>
3+
<div class="subtitle">This site is to demo multiple usage of Angular-Slickgrid, choose an example from the left side menu</div>
44

55
<hr />
66

@@ -13,13 +13,13 @@ <h4>Quick intro</h4>
1313
</p>
1414
<h4>Documentation</h4>
1515
<p>
16-
<h3>Documentation</h3>
17-
Most of the info, news and documentation links are mostly available in the <a href="https://github.com/ghiscoding/slickgrid-universal">Slickgrid-Universal</a> project.
18-
Please consult the
19-
<a href="https://ghiscoding.gitbook.io/angular-slickgrid" target="_blank">Angular-Slickgrid - Docs</a>
20-
before opening any new issues. The
21-
<a href="https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start" target="_blank">Docs - Getting Started</a>
22-
is a great place to start with.
16+
The documentation is powered by GitBook and can be found at this link
17+
<a href="https://ghiscoding.gitbook.io/angular-slickgrid" target="_blank">Angular-Slickgrid - Documentation</a>, so be sure to consult
18+
it before opening any new issue.
19+
<br />
20+
The
21+
<a href="https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start" target="_blank">HOWTO - Quick Start</a>
22+
is the best starting point to get going with this library.
2323
</p>
2424

2525
<hr />

bootstrap5-demo-with-translate/src/app/examples/home.component.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ import { Component } from '@angular/core';
44
templateUrl: './home.component.html',
55
standalone: false,
66
})
7-
export class HomeComponent {
8-
title = 'Angular-Slickgrid - Demo Site';
9-
subTitle = 'This site is to demo multiple usage of Angular-Slickgrid, choose an example from the left side menu';
10-
}
7+
export class HomeComponent { }

0 commit comments

Comments
 (0)