Added more documentation. Fixed a few bugs and improved the code. Added a new pager template that can construct a pager used for pagination.
This commit is contained in:
@ -4,6 +4,11 @@
|
||||
* @ignore
|
||||
*/
|
||||
class IgniteProperty {
|
||||
/**
|
||||
*
|
||||
* @param {Any} val Starting value of this property.
|
||||
* @param {{ onChange, onPush, onPop, onShift, onUnshift, onSplice }} options
|
||||
*/
|
||||
constructor(val, options = null) {
|
||||
this.onChangeCallbacks = [];
|
||||
this.onPushCallbacks = [];
|
||||
|
Reference in New Issue
Block a user