mirror of
https://github.com/mpolden/echoip.git
synced 2025-02-05 23:05:03 +01:00
Remove coffeescript bs
This commit is contained in:
parent
ca93e68871
commit
57a17166c9
14
assets/js/app.js
Normal file
14
assets/js/app.js
Normal 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
1
assets/js/app.min.js
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
!function($){"use strict";$(document).ready(function(){$("#select-command").on("change",function(){$(".command").text($(this).val())})})}(jQuery);
|
@ -1,3 +0,0 @@
|
|||||||
$(document).ready ->
|
|
||||||
$('#select-command').on 'change', ->
|
|
||||||
$('.command').text $(this).val()
|
|
1
assets/js/cmd.min.js
vendored
1
assets/js/cmd.min.js
vendored
@ -1 +0,0 @@
|
|||||||
(function(){$(document).ready(function(){return $("#select-command").on("change",function(){return $(".command").text($(this).val())})})}).call(this);
|
|
@ -66,6 +66,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<a href="https://github.com/martinp/ifconfig"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
|
<a href="https://github.com/martinp/ifconfig"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
|
||||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
|
||||||
<script src="/assets/js/cmd.min.js"></script>
|
<script src="/assets/js/app.min.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user