You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
404 B

/** @odoo-module **/
import publicWidget from 'web.public.widget';
//Redirect from subscription_change_boolean_false to Previous page
publicWidget.registry.boolean_false = publicWidget.Widget.extend({
selector: '#boolean_false',
events: {
'click .redirect_back_with_data':'_onClickBack',
},
//Previous page
_onClickBack:function(ev){
window.history.back();
}
})