Skip to content

Commit

Permalink
Bug Fixes to Board Widget and getList API utiltiy
Browse files Browse the repository at this point in the history
  • Loading branch information
purtuga committed Apr 25, 2015
1 parent de8670d commit 4e55e15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/boardWidget/board.js
Original file line number Diff line number Diff line change
Expand Up @@ -649,9 +649,9 @@ define([
// Loop thorugh all rows and build the
// array of states.
$rows = getNodesFromXml({
xDoc: xData.responseXML,
node: "z:row",
asJQuery: true
xDoc: xData.responseXML,
nodeName: "z:row",
asJQuery: true
});

$rows.each(function(i/*,v*/){
Expand Down
4 changes: 2 additions & 2 deletions src/spapi/getList.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ define([
var getListData = null,
callerFn = function getList(){

getListData.apply(this, arguments);
return getListData.apply(this, arguments);

};

Expand Down Expand Up @@ -158,4 +158,4 @@ define([

return getList;

});
});

0 comments on commit 4e55e15

Please sign in to comment.