mirror of
https://github.com/mpolden/echoip.git
synced 2025-01-13 03:37:21 +01:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
/*jslint es5: true, indent: 2, browser: true*/
|
|
/*global jQuery: true*/
|
|
|
|
(function ($) {
|
|
'use strict';
|
|
|
|
$(document).ready(function () {
|
|
$('#select-command').on('change', function () {
|
|
$('.command').text($(this).val());
|
|
});
|
|
});
|
|
|
|
})(jQuery);
|
|
|