The current syntax for View doesn't support more that a single namespace.
It would be nice to allow multiple namespaces in order to simplify code that run for a specific slot of Views, like:
barba.init({
views: [{
namespace: [
'index',
'contact'
],
beforeLeave(data) {
// do something before leaving `index` or `contact` namespaces
}
}]
});
The current syntax for
Viewdoesn't support more that a singlenamespace.It would be nice to allow multiple namespaces in order to simplify code that run for a specific slot of
Views, like: