thingspeak/app/assets/javascripts/custom.js
2014-02-17 12:05:39 -05:00

12 lines
240 B
JavaScript

// when the document is ready
$(document).ready(function() {
// show form to add a talkback command
$('#talkback_command_add').click(function() {
$(this).hide();
$('#talkback_command_add_form').removeClass('hide');
});
});