Fixed a bug where getOldPropertyValues didn't check for the same instance of a property but rather their value. Added nav template. Fixed pagination so that the list can be null, though it's not ideal.
This commit is contained in:
parent
485f8ae2bd
commit
1ccd66910c
@ -384,7 +384,7 @@ Array.prototype.getPropertyValues = function () {
|
||||
Array.prototype.getOldPropertyValues = function (property, oldValue) {
|
||||
var ret = [];
|
||||
this.forEach(prop => {
|
||||
if (prop == property) {
|
||||
if (prop === property) {
|
||||
ret.push(oldValue);
|
||||
} else {
|
||||
if (prop instanceof IgniteProperty) {
|
||||
|
@ -1713,6 +1713,18 @@ class p extends IgniteTemplate {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* An ignite template that can be used to construct a nav element.
|
||||
*/
|
||||
class nav extends IgniteTemplate {
|
||||
/**
|
||||
* @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template.
|
||||
*/
|
||||
constructor(...children) {
|
||||
super("nav", children);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* An ignite template that can be used to construct a ul element.
|
||||
*/
|
||||
@ -2658,7 +2670,11 @@ class pagination extends IgniteTemplate {
|
||||
this.pages[this.currentPage].forEach(item => item.style.setProperty("display", "none", "important"));
|
||||
|
||||
//Recreate the pages.
|
||||
var pages = parseInt((this.list.length / this.pageSize)) + (this.list.length % this.pageSize > 0 ? 1 : 0);
|
||||
var pages = 0;
|
||||
if (this.list) {
|
||||
pages = parseInt((this.list.length / this.pageSize)) + (this.list.length % this.pageSize > 0 ? 1 : 0);
|
||||
}
|
||||
|
||||
this.pages = [];
|
||||
for (var i = 0; i < pages; i++) {
|
||||
this.pages.push([]);
|
||||
@ -2715,7 +2731,11 @@ class pagination extends IgniteTemplate {
|
||||
}
|
||||
|
||||
//Init our pages to put elements into.
|
||||
var pages = parseInt((this.list.length / this.pageSize)) + (this.list.length % this.pageSize > 0 ? 1 : 0);
|
||||
var pages = 0;
|
||||
if (this.list) {
|
||||
pages = parseInt((this.list.length / this.pageSize)) + (this.list.length % this.pageSize > 0 ? 1 : 0);
|
||||
}
|
||||
|
||||
this.pages = [];
|
||||
for (var i = 0; i < pages; i++) {
|
||||
this.pages.push([]);
|
||||
@ -3033,6 +3053,7 @@ export {
|
||||
small,
|
||||
strong,
|
||||
i,
|
||||
nav,
|
||||
ul,
|
||||
li,
|
||||
br,
|
||||
|
Loading…
x
Reference in New Issue
Block a user