Closed cianbuckley closed 10 months ago
Note: This requires a major release as it's a breaking change to the API (removing preloading config)
prior to change, developers needed to enable preloading flag and then call preload.
ShopifyCheckout.configuration.preloading.enabled = false ShopifyCheckout.preload() // does nothing ShopifyCheckout.configuration.preloading.enabled = true ShopifyCheckout.preload() // preloads
After this change, developers need only call preload
ShopifyCheckout.preload() // preloads and caches checkout view. If it's not called, checkout view is never cached
What are you trying to accomplish?
Note: This requires a major release as it's a breaking change to the API (removing preloading config)
prior to change, developers needed to enable preloading flag and then call preload.
After this change, developers need only call preload
Before you deploy