From 3c569353ec31214aec12729412cf25b512f822d6 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Tue, 20 Jan 2009 12:57:32 +0000 Subject: [PATCH] UI Tabs: updated TODO to with information for reported bug --- ui/ui.tabs.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/ui.tabs.js b/ui/ui.tabs.js index 0bcd68fb8..f2ca04f6e 100644 --- a/ui/ui.tabs.js +++ b/ui/ui.tabs.js @@ -107,7 +107,11 @@ $.widget("ui.tabs", { // remote tab else if (href != '#') { // prevent loading the page itself if href is just "#" $.data(a, 'href.tabs', href); // required for restore on destroy - $.data(a, 'load.tabs', href.replace(/#.*$/, '')); // mutable data, NOTE IE fails to load if url contains fragment identifier - TODO jQuery Ajax bug? + + // TODO until #3808 is fixed strip fragment identifier from url + // (IE fails to load from such url) + $.data(a, 'load.tabs', href.replace(/#.*$/, '')); // mutable data + var id = self._tabId(a); a.href = '#' + id; var $panel = $('#' + id);