Skip to content

Commit 456fa33

Browse files
committed
Fix docs PR links.
1 parent fc52b16 commit 456fa33

File tree

1 file changed

+42
-18
lines changed

1 file changed

+42
-18
lines changed

CHANGELOG.md

Lines changed: 42 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,49 +8,52 @@
88

99
## CHANGELOG
1010

11+
### UNRELEASED
12+
- Fix HtmlServiceProvider. [#38], credits to @ElfSundae.
13+
1114
### v3.2.0 - 10-13-2017
12-
- Review tableAttributes getter and setter #31
13-
- Fix CS. #36
14-
- Add setTableId() to Html Builder #35.
15-
- Add addTableClass, removeTableClass to Html Builder #37
15+
- Review tableAttributes getter and setter [#31]
16+
- Fix CS. [#36]
17+
- Add setTableId() to Html Builder [#35].
18+
- Add addTableClass, removeTableClass to Html Builder [#37]
1619
- All changes credits to @ElfSundae.
1720

1821
### v3.1.0 - 09-14-2017
19-
- Added generateJson to Html/Builder #29, credits to @lk77.
22+
- Added generateJson to Html/Builder [#29], credits to @lk77.
2023

2124
### v3.0.3 - 09-12-2017
22-
- Fix column attributes removed when generate script. #28, credits to @as247.
25+
- Fix column attributes removed when generate script. [#28], credits to @as247.
2326
- Fix https://github.com/yajra/laravel-datatables/issues/1380.
2427

2528
### v3.0.2 - 09-09-2017
2629
- Fix Request class doc blocks.
2730
- Fix typo Datatables to DataTables.
2831

2932
### v3.0.1 - 09-09-2017
30-
- Add fnServerParams to validCallbacks #26. Credits to @cracki.
33+
- Add fnServerParams to validCallbacks [#26]. Credits to @cracki.
3134

3235
### v3.0.0 - 08-31-2017
3336
- v3.0 stable release.
3437

3538
### v2.0.6 - 07-29-2017
36-
- Adding type GET to minifiedAjax in Html/Builder #21, credits to @lk77.
39+
- Adding type GET to minifiedAjax in Html/Builder [#21], credits to @lk77.
3740

3841
### v2.0.5 - 06-29-2017
39-
- Fix fetching of default table id from config. #19
42+
- Fix fetching of default table id from config. [#19]
4043

4144
### v2.0.4 - 06-29-2017
4245
- Fix missing semi-colon.
4346

4447
### v2.0.3 - 06-29-2017
45-
- Script cleanup #18
48+
- Script cleanup [#18]
4649
- Clean up extra space and floating ; on generated ajax data script.
4750
- Do not include attributes on generated column scripts.
4851

4952
### v2.0.2 - 06-29-2017
50-
- Fix parsing of column functions. #17
53+
- Fix parsing of column functions. [#17]
5154

5255
### v2.0.1 - 06-29-2017
53-
- Fix parsing of ajax data where function is rendered as string. #16
56+
- Fix parsing of ajax data where function is rendered as string. [#16]
5457

5558
### v2.0.0 - 06-28-2017
5659
- Add support for Laravel 5.5
@@ -59,15 +62,15 @@
5962
- FormBuilder
6063
- Fix addCheckbox.
6164
- Use HtmlString when generating table and scripts markup.
62-
- Make default table attributes configurable. Fix #3
65+
- Make default table attributes configurable. Fix [#3]
6366
- Use PHPUNIT 6.x, update tests.
6467
- Add macroable trait for builder extension via macro calls.
6568

6669
### v1.4.1 - 06-26-2017
6770
- Set default ajax url to empty string.
6871

6972
### v1.4.0 - 06-26-2017
70-
- Add minifiedAjax method to minify url generated when using get request. #13
73+
- Add minifiedAjax method to minify url generated when using get request. [#13]
7174
- Fixes `php artisan serve` and IE issues on long URL.
7275
- Related Issues:
7376
yajra/laravel-datatables#1225
@@ -78,17 +81,38 @@
7881

7982
### v1.3.0 - 06-24-2017
8083
- Adding addBefore and addColumnBefore in Builder.
81-
- PR #12, credits to @lk77.
84+
- PR [#12], credits to @lk77.
8285

8386
### v1.2.0 - 03-28-2017
84-
- Add method to remove column by names. #9
87+
- Add method to remove column by names. [#9]
8588

8689
### v1.1.1 - 03-28-2017
87-
- Fix columns setter. #8
90+
- Fix columns setter. [#8]
8891

8992
### v1.1.0 - 02-03-2017
90-
- Configurable header attributes. #4
93+
- Configurable header attributes. [#4]
9194
- Credits to @alfa6661.
9295

9396
### v1.0.0 - 01-27-2017
9497
- First release.
98+
99+
[#4]: https://github.com/yajra/laravel-datatables-html/pull/4
100+
[#8]: https://github.com/yajra/laravel-datatables-html/pull/8
101+
[#9]: https://github.com/yajra/laravel-datatables-html/pull/9
102+
[#12]: https://github.com/yajra/laravel-datatables-html/pull/12
103+
[#13]: https://github.com/yajra/laravel-datatables-html/pull/13
104+
[#16]: https://github.com/yajra/laravel-datatables-html/pull/16
105+
[#17]: https://github.com/yajra/laravel-datatables-html/pull/17
106+
[#18]: https://github.com/yajra/laravel-datatables-html/pull/18
107+
[#19]: https://github.com/yajra/laravel-datatables-html/pull/19
108+
[#21]: https://github.com/yajra/laravel-datatables-html/pull/21
109+
[#26]: https://github.com/yajra/laravel-datatables-html/pull/26
110+
[#28]: https://github.com/yajra/laravel-datatables-html/pull/28
111+
[#29]: https://github.com/yajra/laravel-datatables-html/pull/29
112+
[#31]: https://github.com/yajra/laravel-datatables-html/pull/31
113+
[#35]: https://github.com/yajra/laravel-datatables-html/pull/35
114+
[#36]: https://github.com/yajra/laravel-datatables-html/pull/36
115+
[#37]: https://github.com/yajra/laravel-datatables-html/pull/37
116+
[#38]: https://github.com/yajra/laravel-datatables-html/pull/38
117+
118+
[#3]: https://github.com/yajra/laravel-datatables-html/issues/3

0 commit comments

Comments
 (0)