Remove coffeescript bs

This commit is contained in:
Martin Polden
2013-05-10 15:05:46 +02:00
parent ca93e68871
commit 57a17166c9
5 changed files with 16 additions and 5 deletions

14
assets/js/app.js Normal file
View File

@ -0,0 +1,14 @@
/*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);

1
assets/js/app.min.js vendored Normal file
View File

@ -0,0 +1 @@
!function($){"use strict";$(document).ready(function(){$("#select-command").on("change",function(){$(".command").text($(this).val())})})}(jQuery);

View File

@ -1,3 +0,0 @@
$(document).ready ->
$('#select-command').on 'change', ->
$('.command').text $(this).val()

View File

@ -1 +0,0 @@
(function(){$(document).ready(function(){return $("#select-command").on("change",function(){return $(".command").text($(this).val())})})}).call(this);