// ==UserScript==
// @name           Mojitter
// @namespace      c--v.net
// @include        http://twitter.com/*
// ==/UserScript==
//
// Mail: ryosuke a sekido dot info
// Home: http://c--v.net/
// License: Creative Commons by 2.1 Japan

(function() {
	function onLoad() {
		var maxLength = 140;
		unsafeWindow.updateStatusTextCharCounter = function(value) {
			var length = encodeURI(value).replace(/%[0-9A-Z]{2}/g, '%').length;
			unsafeWindow.$('status-field-char-counter').innerHTML = (maxLength - length > 0) ? maxLength - length : 0 ;
		}
	}

	window.addEventListener('load', onLoad, false);
})();
