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
{{ message }}
This repository has been archived by the owner on Nov 21, 2023. It is now read-only.
The following URL fails to open with Fluidbox: http://placehold.it/1024x768&text=Your+text, and this is logged to the console:
Fluidbox: Fluidbox opening is halted because it has detected characters in your URL string that need to be properly encoded/escaped. Whitespace(s) have to be escaped manually. See RFC3986 documentation.
I believe this is caused by /[\s+]/g being used instead of /\s+/g here:
The following URL fails to open with Fluidbox:
http://placehold.it/1024x768&text=Your+text
, and this is logged to the console:I believe this is caused by
/[\s+]/g
being used instead of/\s+/g
here:Fluidbox/src/js/jquery.fluidbox.js
Line 202 in eda36ee
The text was updated successfully, but these errors were encountered: