We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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 () {