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
Trying to use on a site that supports right-to-left languages and the automatic positioning is a bit off.
To fix I am just setting the 'left' to be a negative value of what it should be. Not sure what the 'real' fix could be or if one is really needed. However it would be nice to just use the default centering. I can get into the code more if I have time.
if($("html").attr("dir")==='rtl'){//Flip the spinner for RTL languagesspinner=newSpinner({left: -301,top: 50}).spin($("#scheduling-results")[0]);}else{spinner=newSpinner({left: 301,top: 50}).spin($("#scheduling-results")[0]);}
The text was updated successfully, but these errors were encountered:
Trying to use on a site that supports right-to-left languages and the automatic positioning is a bit off.
To fix I am just setting the 'left' to be a negative value of what it should be. Not sure what the 'real' fix could be or if one is really needed. However it would be nice to just use the default centering. I can get into the code more if I have time.
The text was updated successfully, but these errors were encountered: