Merge pull request #892 from markuzSchmidt/patch-1

Correction of Documentation of `resume()`
This commit is contained in:
Michael Teeuw 2017-05-18 12:34:17 +02:00 committed by GitHub
commit f66114e203

View File

@ -257,7 +257,7 @@ socketNotificationReceived: function(notification, payload) {
When a module is hidden (using the `module.hide()` method), the `suspend()` method will be called. By subclassing this method you can perform tasks like halting the update timers.
####`resume()`
When a module will be shown after it was previously hidden (using the `module.show()` method), the `resume()` method will be called. By subclassing this method you can perform tasks restarting the update timers.
When a module is requested to be shown (using the `module.show()` method), the `resume()` method will be called. By subclassing this method you can perform tasks restarting the update timers.
### Module instance methods