Open hosein opened 7 years ago
I receive this error when clicking on the backdrop, and a similar one when clicking on the X to close.
To fix this, change: Lightbox.modalInstance.result['finally'](function () {
Lightbox.modalInstance.result['finally'](function () {
To this: Lightbox.modalInstance.result.then(function(){},function(res){}).finally(function () {
Lightbox.modalInstance.result.then(function(){},function(res){}).finally(function () {
I receive this error when clicking on the backdrop, and a similar one when clicking on the X to close.
To fix this, change:
Lightbox.modalInstance.result['finally'](function () {
To this:
Lightbox.modalInstance.result.then(function(){},function(res){}).finally(function () {