aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ui.tabs.js
diff options
context:
space:
mode:
authorKlaus Hartl <klaus.hartl@googlemail.com>2009-01-20 12:57:32 +0000
committerKlaus Hartl <klaus.hartl@googlemail.com>2009-01-20 12:57:32 +0000
commit3c569353ec31214aec12729412cf25b512f822d6 (patch)
tree06521c5042ce73659f0caa659adf283ba2672437 /ui/ui.tabs.js
parent604bddc35385aab2058ddd3a89372de9e4539ebf (diff)
downloadjquery-ui-3c569353ec31214aec12729412cf25b512f822d6.tar.gz
jquery-ui-3c569353ec31214aec12729412cf25b512f822d6.zip
UI Tabs: updated TODO to with information for reported bug
Diffstat (limited to 'ui/ui.tabs.js')
-rw-r--r--ui/ui.tabs.js6
1 files changed, 5 insertions, 1 deletions
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);