Bug 32819: Fix cataloguing/value_builder/stocknumberam123.pl
Use event parameter This is part of the refactoring happening in bug 30975 Test plan: 1. Verify that the plugin continues to work as before Signed-off-by: David Nind <david@davidnind.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
aa726e5329
commit
cc59823fa3
1 changed files with 2 additions and 2 deletions
|
@ -44,8 +44,8 @@ my $builder = sub {
|
|||
my ( $params ) = @_;
|
||||
my $res="
|
||||
<script>
|
||||
function Blur$params->{id}() {
|
||||
var code = document.getElementById('$params->{id}');
|
||||
function Blur$params->{id}(ev) {
|
||||
var code = document.getElementById(ev.data.id);
|
||||
var url = '../cataloguing/plugin_launcher.pl?plugin_name=stocknumberam123.pl&code=' + code.value;
|
||||
var req = \$.get(url);
|
||||
req.done(function(resp){
|
||||
|
|
Loading…
Reference in a new issue