Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Adding row data to obj returned for selected and deselected events
Browse files Browse the repository at this point in the history
Fixes #1474
  • Loading branch information
BenjaminNeilDavis committed Sep 10, 2015
1 parent 4784efa commit d2e6652
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/repeater-list-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,10 +418,10 @@ define(function(require){
});

function testClickAction(helpers) {
equal((typeof helpers === 'object' && helpers.length > 0), true, 'Items in row were returned after action click');
equal((typeof helpers === 'object'), true, 'Items in row were returned after action click');
var count = 0;
for (var k in helpers[0].rowData) {
if (helpers[0].rowData.hasOwnProperty(k)) {
for (var k in helpers.rowData) {
if (helpers.rowData.hasOwnProperty(k)) {
++count;
}
}
Expand Down

0 comments on commit d2e6652

Please sign in to comment.