echoip/assets/js/app.js

15 lines
256 B
JavaScript
Raw Normal View History

2013-05-10 15:05:46 +02:00
/*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);