Sha256: 22eedb06f8e1ed103660f4f0185dbfc7fdf05b209281ee351ed6bdaf8002a08a

Contents?: true

Size: 407 Bytes

Versions: 17

Compression:

Stored size: 407 Bytes

Contents

(function () {
  function say() {
    var input = $('input#talk')[0],
        text  = encodeURIComponent(input.value);

    if (text) {
      $.post('/say', 'text=' + text, update, 'text/plain');
    }

    input.value = '';
    return false;
  }

  function update() {
    $('#main').load('/listen')
  }

  $('body').ready(function () {
    $('#chat').submit(say);
    $('input#talk').focus();
  });
})();

Version data entries

17 entries across 17 versions & 4 rubygems

Version Path
Pistos-ramaze-2008.09 examples/app/chat/public/js/chat.js
Pistos-ramaze-2008.12 examples/app/chat/public/js/chat.js
Pistos-ramaze-2009.01 examples/app/chat/public/js/chat.js
Pistos-ramaze-2009.02 examples/app/chat/public/js/chat.js
manveru-ramaze-2008.07 examples/app/chat/public/js/chat.js
manveru-ramaze-2008.08 examples/app/chat/public/js/chat.js
manveru-ramaze-2008.09 examples/app/chat/public/js/chat.js
manveru-ramaze-2008.10 examples/app/chat/public/js/chat.js
manveru-ramaze-2008.12 examples/app/chat/public/js/chat.js
manveru-ramaze-2009.01 examples/app/chat/public/js/chat.js
ptomato-ramaze-2009.02.1 examples/app/chat/public/js/chat.js
ptomato-ramaze-2009.02 examples/app/chat/public/js/chat.js
ramaze-2009.01 examples/app/chat/public/js/chat.js
ramaze-2008.11 examples/app/chat/public/js/chat.js
ramaze-2008.06 examples/app/chat/public/js/chat.js
ramaze-2009.02 examples/app/chat/public/js/chat.js
ramaze-2009.03 examples/app/chat/public/js/chat.js