modularload
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -168,4 +168,4 @@ 'use strict'; | ||
if (this.transition && this.transition != 'true') { | ||
enterDelay = this.transitions[this.transition].enterDelay; | ||
exitDelay = this.transitions[this.transition].exitDelay; | ||
enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay; | ||
exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay; | ||
} | ||
@@ -172,0 +172,0 @@ |
@@ -166,4 +166,4 @@ function _classCallCheck(instance, Constructor) { | ||
if (this.transition && this.transition != 'true') { | ||
enterDelay = this.transitions[this.transition].enterDelay; | ||
exitDelay = this.transitions[this.transition].exitDelay; | ||
enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay; | ||
exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay; | ||
} | ||
@@ -170,0 +170,0 @@ |
{ | ||
"name": "modularload", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Dead simple page transitions and lazy loading.", | ||
@@ -5,0 +5,0 @@ "repository": "modularorg/modularload", |
@@ -96,4 +96,4 @@ export default class { | ||
if (this.transition && this.transition != 'true') { | ||
enterDelay = this.transitions[this.transition].enterDelay; | ||
exitDelay = this.transitions[this.transition].exitDelay; | ||
enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay; | ||
exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay; | ||
} | ||
@@ -100,0 +100,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
35114