UNPKG

dotpay_widget

Version:

Dotpay widget allows merchants to offer displayed payment channels list in their shops

20 lines (19 loc) 535 B
/** * Error handler module */ define("error", ["jquery"], function($) { var config, view; return { init: function(env) { config = env.config; view = env.view; }, display: function(message) { view.hideLoader(); return $('.'+config.view.widgetContainer+' .dotpay-widget-error').html(message).show(); }, reset: function() { return $('.'+config.view.widgetContainer+' .dotpay-widget-error').html('').hide(); } }; });