|
@@ -158,8 +158,9 @@ p.run = function () {
|
|
|
if (this.active) {
|
|
if (this.active) {
|
|
|
var value = this.get()
|
|
var value = this.get()
|
|
|
if (
|
|
if (
|
|
|
- (typeof value === 'object' && value !== null) ||
|
|
|
|
|
- value !== this.value
|
|
|
|
|
|
|
+ value !== this.value ||
|
|
|
|
|
+ Array.isArray(value) ||
|
|
|
|
|
+ this.deep
|
|
|
) {
|
|
) {
|
|
|
var oldValue = this.value
|
|
var oldValue = this.value
|
|
|
this.value = value
|
|
this.value = value
|