From ebd604cf6b6fda6823437cafc1d2db3eb23d9f41 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Mon, 2 Nov 2009 13:28:14 +0000 Subject: [PATCH] Minor --- js/util.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/util.js b/js/util.js index 2104598445..b572846b7c 100644 --- a/js/util.js +++ b/js/util.js @@ -287,10 +287,10 @@ var SN = { // StatusNet replyto = '@' + nick + ' '; text.val(replyto + text.val().replace(RegExp(replyto, 'i'), '')); $('#'+SN.C.S.FormNotice+' input#'+SN.C.S.NoticeInReplyTo).val(id); - if (text.get(0).setSelectionRange) { + if (text[0].setSelectionRange) { var len = text.val().length; - text.get(0).setSelectionRange(len,len); - text.get(0).focus(); + text[0].setSelectionRange(len,len); + text[0].focus(); } return false; } @@ -369,7 +369,7 @@ var SN = { // StatusNet var NDMF = $('.entity_send-a-message form'); if (NDMF.length == 0) { $.get(NDM.attr('href'), null, function(data) { - $('.entity_send-a-message').append(document._importNode($('form', data).get(0), true)); + $('.entity_send-a-message').append(document._importNode($('form', data)[0], true)); NDMF = $('.entity_send-a-message .form_notice'); SN.U.FormNoticeEnhancements(NDMF); NDMF.append(''); -- 2.39.2