2016-01-11 02:25:30 +01:00
|
|
|
(function (global, factory) {
|
|
|
|
if (typeof define === "function" && define.amd) {
|
|
|
|
define('ss.InlineFormAction', [], factory);
|
|
|
|
} else if (typeof exports !== "undefined") {
|
|
|
|
factory();
|
|
|
|
} else {
|
|
|
|
var mod = {
|
|
|
|
exports: {}
|
|
|
|
};
|
|
|
|
factory();
|
|
|
|
global.ssInlineFormAction = mod.exports;
|
|
|
|
}
|
|
|
|
})(this, function () {
|
2016-02-12 04:00:15 +01:00
|
|
|
'use strict';
|
|
|
|
|
2016-01-11 02:25:30 +01:00
|
|
|
Behaviour.register({
|
|
|
|
'div.inlineformaction input#$ID': {
|
|
|
|
onclick: function onclick() {
|
|
|
|
var url = jQuery('base').attr('href') + 'admin-custom/' + this.name.substring(7) + '?ID=' + document.getElementById('Form_EditForm_ID').value + '&ajax=1';
|
2016-03-04 04:40:54 +01:00
|
|
|
|
2016-03-31 05:49:12 +02:00
|
|
|
jQuery.ajax({
|
2016-01-11 02:25:30 +01:00
|
|
|
'url': url,
|
2016-03-31 05:49:12 +02:00
|
|
|
success: Ajax.Evaluator,
|
2016-01-11 02:25:30 +01:00
|
|
|
success: Ajax.Evaluator
|
2016-03-31 05:49:12 +02:00
|
|
|
});
|
2016-03-04 04:40:54 +01:00
|
|
|
|
2016-01-11 02:25:30 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|