Skip to content

Commit

Permalink
Restore the non-fixed version of the common modules and ignore them f…
Browse files Browse the repository at this point in the history
…rom eslint to avoid causing any major bugs
  • Loading branch information
ingeniumed committed May 21, 2024
1 parent cc828c5 commit 87d4da1
Show file tree
Hide file tree
Showing 5 changed files with 1,566 additions and 2,005 deletions.
6 changes: 3 additions & 3 deletions common/js/ef_date.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/* global document, jQuery, ef_week_first_day */

jQuery( document ).ready( function () {
jQuery( document ).ready( function() {

Check failure on line 3 in common/js/ef_date.js

View workflow job for this annotation

GitHub Actions / test

Insert `·`
const dateTimePicks = jQuery( '.date-time-pick' );

dateTimePicks.each( function () {
dateTimePicks.each( function() {

Check failure on line 6 in common/js/ef_date.js

View workflow job for this annotation

GitHub Actions / test

Insert `·`
const $dTP = jQuery( this );

$dTP.datetimepicker( {
Expand All @@ -19,7 +19,7 @@ jQuery( document ).ready( function () {
} );

const datePicks = jQuery( '.date-pick' );
datePicks.each( function () {
datePicks.each( function() {

Check failure on line 22 in common/js/ef_date.js

View workflow job for this annotation

GitHub Actions / test

Insert `·`
const $datePicker = jQuery( this );

$datePicker.datepicker( {
Expand Down
Loading

0 comments on commit 87d4da1

Please sign in to comment.