1. 04 Nov, 2018 6 commits
  2. 16 Aug, 2018 1 commit
  3. 26 Jul, 2018 1 commit
  4. 27 Feb, 2018 1 commit
  5. 25 Feb, 2018 8 commits
  6. 16 Feb, 2018 1 commit
  7. 01 Feb, 2018 1 commit
    • Tibor Kranjčec's avatar
      Update notificationsEvents.md · 80a18f9e
      Tibor Kranjčec authored
      Changes the documentation so the example is correct in the prevention of the memory leaks.
      
      `.bind` will return a new version of the function on each call which means `removeEventListener` won't be able to find the previous listener and release it.
      80a18f9e
  8. 11 Jan, 2018 1 commit
  9. 16 Nov, 2017 2 commits
  10. 27 Oct, 2017 1 commit
  11. 26 Oct, 2017 6 commits
  12. 25 Oct, 2017 1 commit
  13. 04 Oct, 2017 1 commit
    • Eli Perkins's avatar
      Remove @providesModule · 0cff6264
      Eli Perkins authored
      This Haste module is never used by the library, and only interferes with usage in Haste-based systems.
      0cff6264
  14. 26 Aug, 2017 2 commits
  15. 25 Aug, 2017 1 commit
  16. 22 Aug, 2017 3 commits
  17. 19 Aug, 2017 1 commit
  18. 16 Aug, 2017 2 commits
    • Ran Greenberg's avatar
      Merge pull request #103 from reberhardt7/dismiss-notifications · e4921f36
      Ran Greenberg authored
      Use UserNotifications to create/dismiss local notifications
      e4921f36
    • Ryan Eberhardt's avatar
      Use UserNotifications to create local notifications · d945506c
      Ryan Eberhardt authored
      a15e038a adds support for enumerating/dismissing delivered notifications
      by ID, but UserNotifications notifications and UILocalNotification
      notifications have a different set of IDs (a notification created using
      UILocalNotification will have an ID that does not match the
      notification's ID in the UserNotifications world and hence cannot be
      used to dismiss that notification). This commit creates the
      notifications using UserNotifications if the user is on iOS 10.
      d945506c