Browse Source

fix of tmobile textarea input

master
Simon Grim 10 years ago
parent
commit
095b46af4f
  1. 2
      js/tmobile.js

2
js/tmobile.js

@ -25,7 +25,7 @@ function initializeTwister( redirectNetwork, redirectLogin, cbFunc, cbArg ) {
}); });
// reply text counter both newmsg and dmchat // reply text counter both newmsg and dmchat
var $replyText = $( ".post-area-new textarea" ); var $replyText = $( ".post-area-new textarea" );
$replyText.unbind('keyup').keyup( replyTextKeypress ); $replyText.unbind('keyup').keyup(replyTextInput, function() { replyTextUpdateRemaining(this); });
setInterval("tmobileTick()", 2000); setInterval("tmobileTick()", 2000);
handlersInstalled = true; handlersInstalled = true;

Loading…
Cancel
Save