Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a2179ea1

Von Moritz Bunkus vor etwa 4 Jahren hinzugefügt

  • ID a2179ea178c2e8cdcef9fd0cab517048778383de
  • Vorgänger 78efada8
  • Nachfolger b060528d

ClientJS: Funktion zum Setzen der Cursorposition (z.B. in textareas)

Unterschiede anzeigen:

js/kivi.js
662 662
    $input.parent().replaceWith($area);
663 663
    $area.focus();
664 664
  };
665

  
666
  ns.set_cursor_position = function(selector, position) {
667
    var $input = $(selector);
668
    if (position === 'end')
669
      position = $input.val().length;
670

  
671
    $input.prop('selectionStart', position);
672
    $input.prop('selectionEnd',   position);
673
  };
665 674
});
666 675

  
667 676
kivi = namespace('kivi');

Auch abrufbar als: Unified diff