swchoi727/LEP

View on GitHub
app/assets/javascripts/timesheets.js

Summary

Maintainability
A
0 mins
Test Coverage
$(function(){

    // Date picker for timesheet date setter
    $(function() {
      $("#timesheet-datepicker").datepicker({altField: "#timesheet-date", altFormat: 'dd-mm-yy', dateFormat: 'mm/dd/yy'});
    });

 
    $('#language').click(function(){
        console.log($(this).val());
    });

});