Search and Top Navigation
#6061 closed bug (duplicate)
Opened September 16, 2010 06:05PM UTC
Closed September 16, 2010 06:07PM UTC
Last modified October 11, 2012 09:15PM UTC
jquery.ui.tabs.js breaks when compressed with YUI Compressor (caused by non-breaking space character)
Reported by: | stevekwan | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ui.tabs | Version: | 1.8.4 |
Keywords: | yui compressor yahoo | Cc: | |
Blocked by: | Blocking: |
Description
When attempting to compress jquery.ui.tabs.js using Yahoo's YUI Compressor, the resulting minimized JavaScript does not render tabs properly. YUI Compressor is having difficulties minimizing this file because of an unusual non-breaking space character inside.
On line 606 of the uncompressed version of jQuery UI tabs, there is a non-breaking space character (hex code 0xA0). This is what's causing the YUI Compressor problems. The line reads:
load: function( index ) {
The space between "index" and ")" is actually a character with hex code 0xA0. I assume it should be a regular space. Replacing this character with a normal space fixes the problem, and allows the file to be compressed with the YUI Compressor.
This issue also appears in jquery.ui.core.js v1.8.4 on line 27. I've filed a separate bug report for this.
And yes, I know that I could just use the pre-compressed version of jquery.ui.tabs without any problems. :) But I'm working on a project that requires all JavaScript to be minimized and packaged together with the YUI Compressor.
Duplicate of #5921.