assets/js/romo/inline.js in romo-0.17.1 vs assets/js/romo/inline.js in romo-0.18.0

- old
+ new

@@ -12,18 +12,18 @@ this.elem.on('inline:triggerDismiss', $.proxy(this.onDismissClick, this)); this.elem.on('inline:triggerShow', $.proxy(function(e) { this.doShow(); }, this)); - this.elem.on('invoke:loadStart', $.proxy(function(e, invoke) { + this.elem.on('romoAjax:callStart', $.proxy(function(e, romoAjax) { this.doLoadStart(); return false; }, this)); - this.elem.on('invoke:loadSuccess', $.proxy(function(e, data, invoke) { + this.elem.on('romoAjax:callSuccess', $.proxy(function(e, data, romoAjax) { this.doLoadSuccess(data); return false; }, this)); - this.elem.on('invoke:loadError', $.proxy(function(e, xhr, invoke) { + this.elem.on('romoAjax:callError', $.proxy(function(e, xhr, romoAjax) { this.doLoadError(xhr); return false; }, this)); this.doBindDismiss();