Browse Source

Merge pull request #49 from lewisf/fix-screenboard-create-callback-detect

An argument was removed so the detection should be changed
pull/51/head
Brett Langdon 10 years ago
committed by GitHub
parent
commit
2286e89025
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/api/screenboard.js

+ 1
- 1
lib/api/screenboard.js View File

@ -58,7 +58,7 @@ var util = require("util");
* ```
*/
function create(boardTitle, widgets, options, callback){
if(arguments.length < 5 && typeof arguments[3] === "function"){
if(arguments.length < 4 && typeof arguments[2] === "function"){
callback = options;
options = {};
}


Loading…
Cancel
Save