Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 922f961c

Von G. Richardson vor etwa 6 Jahren hinzugefügt

  • ID 922f961cb091c49dbc02693faf50382ceb9cd5a2
  • Vorgänger 1d1f3140

Änderungen HP Design

Unterschiede anzeigen:

js/kivi.js
596 596

  
597 597
    return false;
598 598
  };
599

  
600
  ns.switch_areainput_to_textarea = function(id) {
599
  // PENDENT: Moeglichkeit, CSS-Klasse zu uebergeben
600
  ns.switch_areainput_to_textarea = function(id, sclass) {
601 601
    var $input = $('#' + id);
602 602
    if (!$input.length)
603 603
      return;
......
608 608
    $area.prop('cols', $input.prop('size') || 40);
609 609
    $area.prop('name', $input.prop('name'));
610 610
    $area.prop('id',   $input.prop('id'));
611
    //$area.prop('class','wi-wide'); // PENDENT: als Variable denn als hardcoded string
612
    $area.prop('class', sclass); // PENDENT: als Variable denn als hardcoded string
611 613
    $area.val($input.val());
612 614

  
613 615
    $input.parent().replaceWith($area);

Auch abrufbar als: Unified diff