active-list 4.1.1 → 4.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/lib/assets/javascripts/active-list.jquery.js +8 -0
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.1.
|
1
|
+
4.1.2
|
@@ -125,4 +125,12 @@
|
|
125
125
|
});
|
126
126
|
|
127
127
|
|
128
|
+
// Adds title attribute based on link name
|
129
|
+
$(document).on('hover', 'div[data-list-source] tbody tr td.act a', function (event) {
|
130
|
+
var element = $(this), title = element.attr('title');
|
131
|
+
if (title === null || title === undefined) {
|
132
|
+
element.attr('title', element.html());
|
133
|
+
}
|
134
|
+
});
|
135
|
+
|
128
136
|
})(jQuery);
|