fix: date.toTime() => date.getTime()
This commit is contained in:
sunnylqm 2015-11-11 11:06:40 +08:00
parent 4386a3664d
commit ab654b129f
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ RCT_EXPORT_METHOD(addEvent:(NSString *)name location:(NSString *)location date:(
You would then call this from JavaScript by using either:
```javascript
CalendarManager.addEvent('Birthday Party', '4 Privet Drive, Surrey', date.toTime()); // passing date as number of seconds since Unix epoch
CalendarManager.addEvent('Birthday Party', '4 Privet Drive, Surrey', date.getTime()); // passing date as number of seconds since Unix epoch
```
or