cartodb-4.42/lib/assets/javascripts/builder/routes/handle-modals-route.js
2024-04-06 05:25:13 +00:00

8 lines
182 B
JavaScript

module.exports = function (currentRoute, modals) {
var routeName = currentRoute[0];
if (routeName !== 'modal' && !modals.keepOpenOnRouteChange()) {
modals.destroy();
}
};