(data-route delegates to Batman.redirect: https://github.com/batmanjs/batman/blob/master/modules/view_layer/bindings/route_binding.coffee#L32)
class MyApp.WhateverView extends Batman.View
viewWillAppear: ->
@oldBatmanRedirect = Batman.redirect
Batman.redirect = =>
if confirm("Are you sure?")
@oldBatmanRedirect.apply(null, arguments)
viewWillDisappear: ->
Batman.redirect = @oldBatmanRedirect
Chase