1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #4572: Fix bug when callback is not defined

This commit is contained in:
Carlos Martín 2016-10-11 18:49:43 +02:00
parent 62c044bdfc
commit e9a284476c

View File

@ -115,7 +115,7 @@ define(function(require) {
$(' .resource_list_select', opts.context).change();
}
if(opts.callback() != undefined){
if(opts.callback != undefined){
opts.callback($('.resource_list_select', opts.context));
}
},