You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In fair_score.js:L634 & L656 & L678: jQuery("#fairness_assessment").ready( ... ) and jQuery("#fair-home").ready( ... ) and jQuery('#fair-summary').ready( ... )
According to the jQuery documentation (.ready)jQuery("#fairness_assessment").ready is equivalent to $( document ).ready which leads to the unexpected behaviour.
The text was updated successfully, but these errors were encountered:
I have globally set:
$FAIRNESS_DISABLED = true
Using the chrome dev tools it can be shown that erroneous requests are made related to fair_score.js.
My estimated reason is:
//= require fair_score
jQuery("#fairness_assessment").ready( ... )
andjQuery("#fair-home").ready( ... )
andjQuery('#fair-summary').ready( ... )
According to the jQuery documentation (.ready)
jQuery("#fairness_assessment").ready
is equivalent to$( document ).ready
which leads to the unexpected behaviour.The text was updated successfully, but these errors were encountered: