Skip to content

Commit 73cb350

Browse files
committed
Make some methods visible in the doc (#696 )
1 parent bd623d8 commit 73cb350

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jQuery-QueryBuilder is available on [jsDelivr](https://www.jsdelivr.com/package/
6464

6565
#### Run
6666

67-
Install Node and Bower dependencies `npm install` then run `grunt` in the root directory to generate production files inside `dist`.
67+
Install Node dependencies `npm install` then run `grunt` in the root directory to generate production files inside `dist`.
6868

6969
#### Options
7070

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"bootswatch-dist": "git+https://github.com/dbtek/bootswatch-dist.git#slate",
2525
"chosenjs": "^1.4.3",
2626
"deepmerge": "^2.1.0",
27-
"foodoc": "^0.0.8",
27+
"foodoc": "^0.0.9",
2828
"grunt": "^1.0.2",
2929
"grunt-banner": "^0.6.0",
3030
"grunt-contrib-clean": "^1.0.0",

src/data.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,6 @@ QueryBuilder.prototype.nextRuleId = function() {
270270
* @param {string|object} filter - filter id or filter object
271271
* @returns {object[]}
272272
* @fires QueryBuilder.changer:getOperators
273-
* @private
274273
*/
275274
QueryBuilder.prototype.getOperators = function(filter) {
276275
if (typeof filter == 'string') {
@@ -318,7 +317,6 @@ QueryBuilder.prototype.getOperators = function(filter) {
318317
* @param {boolean} [doThrow=true]
319318
* @returns {object|null}
320319
* @throws UndefinedFilterError
321-
* @private
322320
*/
323321
QueryBuilder.prototype.getFilterById = function(id, doThrow) {
324322
if (id == '-1') {
@@ -342,7 +340,6 @@ QueryBuilder.prototype.getFilterById = function(id, doThrow) {
342340
* @param {boolean} [doThrow=true]
343341
* @returns {object|null}
344342
* @throws UndefinedOperatorError
345-
* @private
346343
*/
347344
QueryBuilder.prototype.getOperatorByType = function(type, doThrow) {
348345
if (type == '-1') {

0 commit comments

Comments
 (0)