18 lines
377 B
JavaScript
18 lines
377 B
JavaScript
/* global jQuery */
|
|
(function ($) {
|
|
"use strict";
|
|
$.formbuilder.menucontrol["permission-action"] = {
|
|
options: {
|
|
name: null,
|
|
value: false,
|
|
text: "no target test",
|
|
image: "permission-action.png"
|
|
},
|
|
type: "button",
|
|
property: false,
|
|
fn: function ($elems, grid) {
|
|
alert("exe no target test menu button");
|
|
}
|
|
};
|
|
})(jQuery);
|