mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
31 lines
719 B
JavaScript
31 lines
719 B
JavaScript
(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 () {
|
|
'use strict';
|
|
|
|
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';
|
|
|
|
jQuery.ajax({
|
|
'url': url,
|
|
success: Ajax.Evaluator,
|
|
success: Ajax.Evaluator
|
|
});
|
|
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
}); |