cockpit/js/ui.js in cpee-1.3.177 vs cockpit/js/ui.js in cpee-1.3.178

- old
+ new

@@ -21,13 +21,10 @@ $("#icontinue").click(function(){ $.cookie('cpee_iagree','yes'); location.reload(); }); } - - // Resize areas - $('#parameters .tabbelow').resizable(); }); // flexible parameter input function remove_entry(target,foc) { //{{{ @@ -44,10 +41,10 @@ } tr.remove(); } //}}} function new_entry(top) { //{{{ - var visid = $('table.tabbar td.tab',top).not('.switch').not('.inactive').attr('id').replace(/tab/,''); + var visid = $('ui-tabbar ui-tab',top).not('.switch').not('.inactive').attr('id').replace(/tab/,''); var node = $('#dat_template_pair tr').clone(); var vnode = $('#dat_' + visid).append(node); $('.pair_name',vnode).focus(); return node; } //}}}