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:
2023-04-17 12:09:21 -07:00
parent 1ccd66910c
commit 3383001c3a
2 changed files with 319 additions and 6 deletions

View File

@ -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 = [];