We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8235b99 + f14696d commit 2cfb4aaCopy full SHA for 2cfb4aa
1 file changed
themes/openstack/javascript/navigation.js
@@ -81,4 +81,17 @@ jQuery(window).on("resize",function () {
81
if (jQuery(window).width() > 767) {
82
$("li").removeClass("open");
83
}
84
+});
85
+
86
+// Global Nav UI Tracking
87
88
+jQuery(document).ready(function($) {
89
+ $(document).on("click", ".project___1BAp9", function(){
90
+ var href = $(this).attr('href');
91
+ ga('send', 'event', {
92
+ eventCategory: 'Global UI Navigation',
93
+ eventAction: 'Click',
94
+ eventLabel: href
95
+ });
96
97
});
0 commit comments