Skip to content

Commit

Permalink
Added some missing since decorators to the code documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rstaib committed May 2, 2015
1 parent 4647bd0 commit 62bcb53
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 10 deletions.
Binary file modified dist/jQuery.Bootgrid.1.2.0.nupkg
Binary file not shown.
Binary file modified dist/jquery.bootgrid-1.2.0.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.2.0 - 04/22/2015
* jQuery Bootgrid v1.2.0 - 05/02/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.fa.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.2.0 - 04/22/2015
* jQuery Bootgrid v1.2.0 - 05/02/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.fa.min.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.2.0 - 04/22/2015
* jQuery Bootgrid v1.2.0 - 05/02/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down
15 changes: 12 additions & 3 deletions dist/jquery.bootgrid.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* jQuery Bootgrid v1.2.0 - 04/22/2015
* jQuery Bootgrid v1.2.0 - 05/02/2015
* Copyright (c) 2014-2015 Rafael Staib (http://www.jquery-bootgrid.com)
* Licensed under MIT http://www.opensource.org/licenses/MIT
*/
Expand Down Expand Up @@ -1065,7 +1065,7 @@
multiSort: false,

/**
* Generall search settings to configure the search field behaviour.
* General search settings to configure the search field behaviour.
*
* @property searchSettings
* @type Object
Expand Down Expand Up @@ -1106,7 +1106,7 @@

/**
* Ajax request settings that shall be used for server-side communication.
* All setting can be overridden except data, error, success and url.
* All setting except data, error, success and url can be overridden.
* For the full list of settings go to http://api.jquery.com/jQuery.ajax/.
*
* @property ajaxSettings
Expand Down Expand Up @@ -1690,6 +1690,7 @@
*
* @method getColumnSettings
* @return {Array} Returns a list of the column settings.
* @since 1.2.0
**/
Grid.prototype.getColumnSettings = function()
{
Expand All @@ -1703,6 +1704,7 @@
*
* @method getCurrentPage
* @return {Number} Returns the current page index.
* @since 1.2.0
**/
Grid.prototype.getCurrentPage = function()
{
Expand All @@ -1716,6 +1718,7 @@
*
* @method getCurrentPage
* @return {Array} Returns the current rows.
* @since 1.2.0
**/
Grid.prototype.getCurrentRows = function()
{
Expand All @@ -1729,6 +1732,7 @@
*
* @method getRowCount
* @return {Number} Returns the row count per page.
* @since 1.2.0
**/
Grid.prototype.getRowCount = function()
{
Expand All @@ -1742,6 +1746,7 @@
*
* @method getSearchPhrase
* @return {String} Returns the actual search phrase.
* @since 1.2.0
**/
Grid.prototype.getSearchPhrase = function()
{
Expand All @@ -1755,6 +1760,7 @@
*
* @method getSelectedRows
* @return {Array} Returns all selected rows.
* @since 1.2.0
**/
Grid.prototype.getSelectedRows = function()
{
Expand All @@ -1768,6 +1774,7 @@
*
* @method getSortDictionary
* @return {Object} Returns the sort dictionary.
* @since 1.2.0
**/
Grid.prototype.getSortDictionary = function()
{
Expand All @@ -1781,6 +1788,7 @@
*
* @method getTotalPageCount
* @return {Number} Returns the total page count.
* @since 1.2.0
**/
Grid.prototype.getTotalPageCount = function()
{
Expand All @@ -1794,6 +1802,7 @@
*
* @method getTotalRowCount
* @return {Number} Returns the total row count.
* @since 1.2.0
**/
Grid.prototype.getTotalRowCount = function()
{
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/jquery.bootgrid.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 11 additions & 2 deletions src/public.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Grid.defaults = {
multiSort: false,

/**
* Generall search settings to configure the search field behaviour.
* General search settings to configure the search field behaviour.
*
* @property searchSettings
* @type Object
Expand Down Expand Up @@ -152,7 +152,7 @@ Grid.defaults = {

/**
* Ajax request settings that shall be used for server-side communication.
* All setting can be overridden except data, error, success and url.
* All setting except data, error, success and url can be overridden.
* For the full list of settings go to http://api.jquery.com/jQuery.ajax/.
*
* @property ajaxSettings
Expand Down Expand Up @@ -736,6 +736,7 @@ Grid.prototype.sort = function(dictionary)
*
* @method getColumnSettings
* @return {Array} Returns a list of the column settings.
* @since 1.2.0
**/
Grid.prototype.getColumnSettings = function()
{
Expand All @@ -749,6 +750,7 @@ Grid.prototype.getColumnSettings = function()
*
* @method getCurrentPage
* @return {Number} Returns the current page index.
* @since 1.2.0
**/
Grid.prototype.getCurrentPage = function()
{
Expand All @@ -762,6 +764,7 @@ Grid.prototype.getCurrentPage = function()
*
* @method getCurrentPage
* @return {Array} Returns the current rows.
* @since 1.2.0
**/
Grid.prototype.getCurrentRows = function()
{
Expand All @@ -775,6 +778,7 @@ Grid.prototype.getCurrentRows = function()
*
* @method getRowCount
* @return {Number} Returns the row count per page.
* @since 1.2.0
**/
Grid.prototype.getRowCount = function()
{
Expand All @@ -788,6 +792,7 @@ Grid.prototype.getRowCount = function()
*
* @method getSearchPhrase
* @return {String} Returns the actual search phrase.
* @since 1.2.0
**/
Grid.prototype.getSearchPhrase = function()
{
Expand All @@ -801,6 +806,7 @@ Grid.prototype.getSearchPhrase = function()
*
* @method getSelectedRows
* @return {Array} Returns all selected rows.
* @since 1.2.0
**/
Grid.prototype.getSelectedRows = function()
{
Expand All @@ -814,6 +820,7 @@ Grid.prototype.getSelectedRows = function()
*
* @method getSortDictionary
* @return {Object} Returns the sort dictionary.
* @since 1.2.0
**/
Grid.prototype.getSortDictionary = function()
{
Expand All @@ -827,6 +834,7 @@ Grid.prototype.getSortDictionary = function()
*
* @method getTotalPageCount
* @return {Number} Returns the total page count.
* @since 1.2.0
**/
Grid.prototype.getTotalPageCount = function()
{
Expand All @@ -840,6 +848,7 @@ Grid.prototype.getTotalPageCount = function()
*
* @method getTotalRowCount
* @return {Number} Returns the total row count.
* @since 1.2.0
**/
Grid.prototype.getTotalRowCount = function()
{
Expand Down

0 comments on commit 62bcb53

Please sign in to comment.