This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # RGB変換プログラム | |
| # 3つの10進数を受け取り、それぞれを16進数に変換した文字列を返す | |
| def to_hex(*args) | |
| arry = args.map {|s|s.to_s(16).rjust(2,"0")} | |
| p "##{arry.join}" | |
| end | |
| to_hex(255, 255, 255) | |
| to_hex(4, 60, 120) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $('#js-multiple-timesheet-employee-daily-records-table tr').each((i, e)=>{ | |
| if (!/平日/.test(e.textContent)) return; | |
| $('.add_fields',e).click(); | |
| $('[name*="elapsed_minutes_at_work_in_with_neuminour_string_format"]', e)[0].value = '10:00'; | |
| $('[name*="elapsed_minutes_at_work_out_with_neuminour_string_format"]', e)[0].value = '19:00'; | |
| }) |
NewerOlder