Skip to content

Commit 62bcb53

Browse files
committed
Added some missing since decorators to the code documentation
1 parent 4647bd0 commit 62bcb53

9 files changed

+28
-10
lines changed

dist/jQuery.Bootgrid.1.2.0.nupkg

6 Bytes
Binary file not shown.

dist/jquery.bootgrid-1.2.0.zip

11 Bytes
Binary file not shown.

dist/jquery.bootgrid.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Bootgrid v1.2.0 - 04/22/2015
2+
* jQuery Bootgrid v1.2.0 - 05/02/2015
33
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/

dist/jquery.bootgrid.fa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Bootgrid v1.2.0 - 04/22/2015
2+
* jQuery Bootgrid v1.2.0 - 05/02/2015
33
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/

dist/jquery.bootgrid.fa.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Bootgrid v1.2.0 - 04/22/2015
2+
* jQuery Bootgrid v1.2.0 - 05/02/2015
33
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/

dist/jquery.bootgrid.js

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* jQuery Bootgrid v1.2.0 - 04/22/2015
2+
* jQuery Bootgrid v1.2.0 - 05/02/2015
33
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
44
* Licensed under MIT http://www.opensource.org/licenses/MIT
55
*/
@@ -1065,7 +1065,7 @@
10651065
multiSort: false,
10661066

10671067
/**
1068-
* Generall search settings to configure the search field behaviour.
1068+
* General search settings to configure the search field behaviour.
10691069
*
10701070
* @property searchSettings
10711071
* @type Object
@@ -1106,7 +1106,7 @@
11061106

11071107
/**
11081108
* Ajax request settings that shall be used for server-side communication.
1109-
* All setting can be overridden except data, error, success and url.
1109+
* All setting except data, error, success and url can be overridden.
11101110
* For the full list of settings go to http://api.jquery.com/jQuery.ajax/.
11111111
*
11121112
* @property ajaxSettings
@@ -1690,6 +1690,7 @@
16901690
*
16911691
* @method getColumnSettings
16921692
* @return {Array} Returns a list of the column settings.
1693+
* @since 1.2.0
16931694
**/
16941695
Grid.prototype.getColumnSettings = function()
16951696
{
@@ -1703,6 +1704,7 @@
17031704
*
17041705
* @method getCurrentPage
17051706
* @return {Number} Returns the current page index.
1707+
* @since 1.2.0
17061708
**/
17071709
Grid.prototype.getCurrentPage = function()
17081710
{
@@ -1716,6 +1718,7 @@
17161718
*
17171719
* @method getCurrentPage
17181720
* @return {Array} Returns the current rows.
1721+
* @since 1.2.0
17191722
**/
17201723
Grid.prototype.getCurrentRows = function()
17211724
{
@@ -1729,6 +1732,7 @@
17291732
*
17301733
* @method getRowCount
17311734
* @return {Number} Returns the row count per page.
1735+
* @since 1.2.0
17321736
**/
17331737
Grid.prototype.getRowCount = function()
17341738
{
@@ -1742,6 +1746,7 @@
17421746
*
17431747
* @method getSearchPhrase
17441748
* @return {String} Returns the actual search phrase.
1749+
* @since 1.2.0
17451750
**/
17461751
Grid.prototype.getSearchPhrase = function()
17471752
{
@@ -1755,6 +1760,7 @@
17551760
*
17561761
* @method getSelectedRows
17571762
* @return {Array} Returns all selected rows.
1763+
* @since 1.2.0
17581764
**/
17591765
Grid.prototype.getSelectedRows = function()
17601766
{
@@ -1768,6 +1774,7 @@
17681774
*
17691775
* @method getSortDictionary
17701776
* @return {Object} Returns the sort dictionary.
1777+
* @since 1.2.0
17711778
**/
17721779
Grid.prototype.getSortDictionary = function()
17731780
{
@@ -1781,6 +1788,7 @@
17811788
*
17821789
* @method getTotalPageCount
17831790
* @return {Number} Returns the total page count.
1791+
* @since 1.2.0
17841792
**/
17851793
Grid.prototype.getTotalPageCount = function()
17861794
{
@@ -1794,6 +1802,7 @@
17941802
*
17951803
* @method getTotalRowCount
17961804
* @return {Number} Returns the total row count.
1805+
* @since 1.2.0
17971806
**/
17981807
Grid.prototype.getTotalRowCount = function()
17991808
{

dist/jquery.bootgrid.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery.bootgrid.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/public.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ Grid.defaults = {
111111
multiSort: false,
112112

113113
/**
114-
* Generall search settings to configure the search field behaviour.
114+
* General search settings to configure the search field behaviour.
115115
*
116116
* @property searchSettings
117117
* @type Object
@@ -152,7 +152,7 @@ Grid.defaults = {
152152

153153
/**
154154
* Ajax request settings that shall be used for server-side communication.
155-
* All setting can be overridden except data, error, success and url.
155+
* All setting except data, error, success and url can be overridden.
156156
* For the full list of settings go to http://api.jquery.com/jQuery.ajax/.
157157
*
158158
* @property ajaxSettings
@@ -736,6 +736,7 @@ Grid.prototype.sort = function(dictionary)
736736
*
737737
* @method getColumnSettings
738738
* @return {Array} Returns a list of the column settings.
739+
* @since 1.2.0
739740
**/
740741
Grid.prototype.getColumnSettings = function()
741742
{
@@ -749,6 +750,7 @@ Grid.prototype.getColumnSettings = function()
749750
*
750751
* @method getCurrentPage
751752
* @return {Number} Returns the current page index.
753+
* @since 1.2.0
752754
**/
753755
Grid.prototype.getCurrentPage = function()
754756
{
@@ -762,6 +764,7 @@ Grid.prototype.getCurrentPage = function()
762764
*
763765
* @method getCurrentPage
764766
* @return {Array} Returns the current rows.
767+
* @since 1.2.0
765768
**/
766769
Grid.prototype.getCurrentRows = function()
767770
{
@@ -775,6 +778,7 @@ Grid.prototype.getCurrentRows = function()
775778
*
776779
* @method getRowCount
777780
* @return {Number} Returns the row count per page.
781+
* @since 1.2.0
778782
**/
779783
Grid.prototype.getRowCount = function()
780784
{
@@ -788,6 +792,7 @@ Grid.prototype.getRowCount = function()
788792
*
789793
* @method getSearchPhrase
790794
* @return {String} Returns the actual search phrase.
795+
* @since 1.2.0
791796
**/
792797
Grid.prototype.getSearchPhrase = function()
793798
{
@@ -801,6 +806,7 @@ Grid.prototype.getSearchPhrase = function()
801806
*
802807
* @method getSelectedRows
803808
* @return {Array} Returns all selected rows.
809+
* @since 1.2.0
804810
**/
805811
Grid.prototype.getSelectedRows = function()
806812
{
@@ -814,6 +820,7 @@ Grid.prototype.getSelectedRows = function()
814820
*
815821
* @method getSortDictionary
816822
* @return {Object} Returns the sort dictionary.
823+
* @since 1.2.0
817824
**/
818825
Grid.prototype.getSortDictionary = function()
819826
{
@@ -827,6 +834,7 @@ Grid.prototype.getSortDictionary = function()
827834
*
828835
* @method getTotalPageCount
829836
* @return {Number} Returns the total page count.
837+
* @since 1.2.0
830838
**/
831839
Grid.prototype.getTotalPageCount = function()
832840
{
@@ -840,6 +848,7 @@ Grid.prototype.getTotalPageCount = function()
840848
*
841849
* @method getTotalRowCount
842850
* @return {Number} Returns the total row count.
851+
* @since 1.2.0
843852
**/
844853
Grid.prototype.getTotalRowCount = function()
845854
{

0 commit comments

Comments
 (0)