fix help-links on Firefox

link text must come after icon to layout properly on Firefox

this makes help links from the kernel match those already populated from the template
This commit is contained in:
Min RK 2015-01-28 09:17:52 -08:00
parent 03ffca6d88
commit a720a14159

View File

@ -394,10 +394,12 @@ define([
.attr('target', '_blank')
.attr('title', 'Opens in a new window')
.attr('href', link.url)
.text(link.text)
.append($("<i>")
.addClass("fa fa-external-link menu-icon pull-right")
)
.append($("<span>")
.text(link.text)
)
)
);
cursor = cursor.next();