File: ui.js

package info (click to toggle)
node-http-server 14.1.1%2B~cs3.14.34-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,856 kB
  • sloc: javascript: 5,677; makefile: 8
file content (9 lines) | stat: -rw-r--r-- 319 bytes parent folder | download
1
2
3
4
5
6
7
8
9
/* global eol */
$('.js-converter__form').on('submit', function(e) {
  e.preventDefault()
  var $form = $(this)
  var $output = $form.find('.js-converter__output')
  var method = $form.find('.js-converter__method')[0].value
  var text = $form.find('.js-converter__input')[0].value
  $output.text(eol[method](text))
});