Side navigation
#5534 closed enhancement (wontfix)
Opened November 19, 2009 05:25PM UTC
Closed January 02, 2011 09:17PM UTC
Ajax does not work in html help (chm) files
Reported by: | htmlhelp | Owned by: | |
---|---|---|---|
Priority: | low | Milestone: | 1.5 |
Component: | ajax | Version: | 1.3.2 |
Keywords: | chm,xhr,ajax,httpSuccess,ajaxrewrite | Cc: | |
Blocked by: | Blocking: |
Description
Easy problem.
Function httpSuccess checks if request is successfull. There is special branch for local "file://" requests. BUT, same behaviour used in IE chm files (*.chm) in "mk:" protocol.
You should replace
return !xhr.status && location.protocol == "file:" <...>
with
return !xhr.status && (location.protocol == "file:" || location.protocol == "mk:")
to make all help-writers happy ;)
Attachments (0)
Change History (5)
Changed June 13, 2010 06:39PM UTC by comment:1
component: | unfiled → ajax |
---|
Changed October 25, 2010 07:37AM UTC by comment:2
Soo..? Guys, fixes whould not never be easier, what's going on??
Changed October 25, 2010 07:44AM UTC by comment:3
milestone: | 1.4 → 1.5 |
---|---|
priority: | major → low |
status: | new → open |
type: | bug → enhancement |
jQuery makes no claims to support .chm files. We'll push this through as a potential enhancement, but there are plenty of protocols that we don't support, because they just aren't common... The library is intended to be the best set of _common_ options for developing. Feel free to use AOP or a modified version in your .chm files.
What other protocols would we potentially need to support if we took this on?
Changed December 27, 2010 10:37PM UTC by comment:4
keywords: | chm xhr ajax httpSuccess → chm,xhr,ajax,httpSuccess,ajaxrewrite |
---|
Changed January 02, 2011 09:17PM UTC by comment:5
resolution: | → wontfix |
---|---|
status: | open → closed |
Non-HTTP requests are not supported in Core.