From 98b56234c946698390410190148f62a187035c3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20GAULIN?= Date: Mon, 27 Jul 2015 12:36:51 +0200 Subject: [PATCH] Updating a tab was changing the HTML `data-*` attributes but did not update the jQuery `.data()` cache - fixes #1310 --- modules/system/assets/ui/js/tab.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/system/assets/ui/js/tab.js b/modules/system/assets/ui/js/tab.js index ca3dc609f..cf3ef60d3 100644 --- a/modules/system/assets/ui/js/tab.js +++ b/modules/system/assets/ui/js/tab.js @@ -158,6 +158,9 @@ this.initTab($tab) + $link.data('title', $link.attr('data-title')) + $link.data('target', $link.attr('data-target')) + this.updateClasses() }