Skip to content

Commit

Permalink
Merge pull request #54 from michaek/feature/input-value
Browse files Browse the repository at this point in the history
Added inputValue to SpreadsheetCell.
  • Loading branch information
theoephraim committed Oct 25, 2015
2 parents 72481fc + 39c3ea3 commit f7b6343
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ var SpreadsheetCell = function( spreadsheet, worksheet_id, data ){
self.col = parseInt(data['gs:cell']['$']['col']);
self.value = data['gs:cell']['_'];
self.numericValue = data['gs:cell']['$']['numericValue'];
self.inputValue = data['gs:cell']['$']['inputValue'];

self['_links'] = [];
links = forceArray( data.link );
Expand Down

0 comments on commit f7b6343

Please sign in to comment.