cubicweb/web/data/cubicweb.edition.js
changeset 11875 011730a4af73
parent 11057 0b59724cb3f2
--- a/cubicweb/web/data/cubicweb.edition.js	Wed Nov 23 17:19:51 2016 +0100
+++ b/cubicweb/web/data/cubicweb.edition.js	Thu Nov 19 12:25:45 2015 +0100
@@ -9,7 +9,7 @@
 
 //============= Eproperty form functions =====================================//
 /**
- * .. function:: setPropValueWidget(varname, tabindex)
+ * .. function:: setPropValueWidget(varname)
  *
  * called on CWProperty key selection:
  * - get the selected value
@@ -17,16 +17,15 @@
  * - fill associated div with the returned html
  *
  * * `varname`, the name of the variable as used in the original creation form
- * * `tabindex`, the tabindex that should be set on the widget
  */
 
-function setPropValueWidget(varname, tabindex) {
+function setPropValueWidget(varname) {
     var key = firstSelected(document.getElementById('pkey-subject:' + varname));
     if (key) {
         var args = {
             fname: 'prop_widget',
             pageid: pageid,
-            arg: $.map([key.value, varname, tabindex], JSON.stringify)
+            arg: $.map([key.value, varname], JSON.stringify)
         };
         cw.jqNode('div:value-subject:' + varname).loadxhtml(AJAX_BASE_URL, args, 'post');
     }