Skip to content

Commit

Permalink
fix(ui): compatibility issue with internet explorer 11
Browse files Browse the repository at this point in the history
fix #936
  • Loading branch information
btry committed Mar 21, 2018
1 parent 4fae5c5 commit fb2c711
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions inc/wizard.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ public static function header($title) {
echo '<li class="' . ($activeMenuItem == self::MENU_CATALOG ? 'plugin_formcreator_selectedMenuItem' : '') . '">';
echo '<a href="' . $CFG_GLPI["root_doc"].'/plugins/formcreator/front/wizard.php' . '">';
echo '<span class="fa fa-paper-plane-o fc_list_icon" title="'.__('Seek assistance', 'formcreator').'"></span>';
echo '<label>'.__('Seek assistance', 'formcreator').'</label>';
echo __('Seek assistance', 'formcreator');
echo '</a></li>';

echo '<li class="' . ($activeMenuItem == self::MENU_LAST_FORMS ? 'plugin_formcreator_selectedMenuItem' : '') . '">';
echo '<a href="' . $CFG_GLPI["root_doc"].'/plugins/formcreator/front/issue.php?reset=reset' . '">';
echo '<span class="fa fa-list fc_list_icon" title="'.__('My requests for assistance', 'formcreator').'"></span>';
echo '<label>'.__('My requests for assistance', 'formcreator').'</label>';
echo __('My requests for assistance', 'formcreator');
echo '</a></li>';

if (Session::haveRight("reservation", ReservationItem::RESERVEANITEM)) {
Expand All @@ -116,7 +116,7 @@ public static function header($title) {
echo '<li class="' . ($activeMenuItem == self::MENU_RESERVATIONS ? 'plugin_formcreator_selectedMenuItem' : '') . '">';
echo '<a href="' . $CFG_GLPI["root_doc"].'/plugins/formcreator/front/reservationitem.php' . '">';
echo '<span class="fa fa-calendar-check-o fc_list_icon" title="'.__('Book an asset', 'formcreator').'"></span>';
echo '<label>'.__('Book an asset', 'formcreator').'</label>';
echo __('Book an asset', 'formcreator');
echo '</a></li>';
}
}
Expand All @@ -125,7 +125,7 @@ public static function header($title) {
echo '<li class="' . ($activeMenuItem == self::MENU_FEEDS ? 'plugin_formcreator_selectedMenuItem' : '') . '">';
echo '<a href="' . $CFG_GLPI["root_doc"].'/plugins/formcreator/front/wizardfeeds.php' . '">';
echo '<span class="fa fa-rss fc_list_icon" title="'.__('Consult feeds', 'formcreator').'"></span>';
echo '<label>'.__('Consult feeds', 'formcreator').'</label>';
echo __('Consult feeds', 'formcreator');
echo '</a></li>';
}

Expand Down Expand Up @@ -170,7 +170,7 @@ public static function header($title) {
echo '<li class="' . ($activeMenuItem == self::MENU_HELP ? 'plugin_formcreator_selectedMenuItem' : '') . 'plugin_formcreator_helpIcon">';
echo '<a href="' . $CFG_GLPI["helpdesk_doc_url"] . '" target="_blank">';
echo '<span class="fa fa-question fc_list_icon" title="' . __s('Help') . '"></span>';
echo '<label>' . __s('Help') . '</label>';
echo __('Help');
echo '</a>';
echo '</li>';
}
Expand Down

0 comments on commit fb2c711

Please sign in to comment.