// Extra Menu Icon
var styleAdded = false;
function addMenuItem(linkText, linkhref, icon) {
var iconHtml = '',
itemHtml,
linkId = linkText.split(' ').join('_'),
iconCSS = '' +
' i.custom_menu_list_icon:before {' +
' font-size: 27px;' +
' width: 27px;' +
' line-height: 27px;' +
' }' +
' i.custom_menu_list_icon {' +
' width: 27px;' +
' height: 27px;' +
' }' +
' body.primary-nav-expanded .menu-item__text.custom-menu-item__text {' +
' white-space: normal;' +
' padding: 0 2px;' +
' }' +
'';
if (icon !== '') {
// If it is a Canvas icon
if (icon.indexOf('icon') === 0) {
iconHtml = '
';
// for an svg or other image
} else if (icon !== '') {
iconHtml = '
' + icon + '
';
}
}
// Build item html
itemHtml = '' +
'
' + iconHtml +
' ' + linkText + '
' +
' ' +
'';
//$('#menu').append(itemHtml);
$("#menu li:eq(4)").after(itemHtml);
// Add some custom css to the head the first time
if (!styleAdded) {
$('head').append(iconCSS);
styleAdded = true;
}
}
$(document).ready(function() {
addMenuItem('Resources','
https://success.oregonstate.edu/where-do-I-go', 'icon-note-light', '_blank');
});