diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-30 02:07:59 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-30 02:07:59 +0000 |
commit | b472188b1e3fe4ff8a0da791910d12496b1de348 (patch) | |
tree | 63cc52ab126372ba532e7c246fe06b5e1364f764 /mod/thewire/js | |
parent | 030f72d81b76823e4f3b85675beb896b00b6af5d (diff) | |
download | elgg-b472188b1e3fe4ff8a0da791910d12496b1de348.tar.gz elgg-b472188b1e3fe4ff8a0da791910d12496b1de348.tar.bz2 |
Fixes #3200 ajax-based view previous link works for the wire
git-svn-id: http://code.elgg.org/elgg/trunk@8882 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire/js')
-rw-r--r-- | mod/thewire/js/thewire.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mod/thewire/js/thewire.js b/mod/thewire/js/thewire.js deleted file mode 100644 index 61f29db81..000000000 --- a/mod/thewire/js/thewire.js +++ /dev/null @@ -1,28 +0,0 @@ -elgg.provide('elgg.thewire'); - -elgg.thewire.init = function() { - $("#thewire-textarea").live('keydown', function() { - elgg.thewire.textCounter(this, $("#thewire-characters-remaining span"), 140); - }); - $("#thewire-textarea").live('keyup', function() { - elgg.thewire.textCounter(this, $("#thewire-characters-remaining span"), 140); - }); -} - -elgg.thewire.textCounter = function(textarea, status, limit) { - - var remaining_chars = limit - textarea.value.length; - status.html(remaining_chars); - - if (remaining_chars < 0) { - status.parent().css("color", "#D40D12"); - $("#thewire-submit-button").attr('disabled', 'disabled'); - $("#thewire-submit-button").addClass('elgg-state-disabled'); - } else { - status.parent().css("color", ""); - $("#thewire-submit-button").removeAttr('disabled', 'disabled'); - $("#thewire-submit-button").removeClass('elgg-state-disabled'); - } -} - -elgg.register_hook_handler('init', 'system', elgg.thewire.init);
\ No newline at end of file |