Unprinteable characters in jquery.ui.core.js
O
n line 27 of jquery.ui.core.js (version 1.8.4) there is a line of code:
var proto = $.ui[ module ].prototype;
It seems that between the "module" and the bracket "]" is not a space (20) but a character "C2 A0". This causes an error when I am using PrimeFaces library that in turn is using jQuery UI 1.8.4.
Is it a bug, or is the "C2 A0" supposed to be there? And if it is not a bug, what encoding should I use to handle that?