removed symbolset, replaced with fontawesome for view live, expand collape, zoom buttons

This commit is contained in:
Frances Botsford
2013-05-16 10:29:33 -04:00
committed by David Baumgold
parent 88dd9244f3
commit 571ebb1fcd
8 changed files with 22 additions and 22 deletions

View File

@@ -209,8 +209,8 @@ function toggleSections(e) {
$section = $('.courseware-section');
sectionCount = $section.length;
$button = $(this);
$labelCollapsed = $('<i class="ss-icon ss-symbolicons-block">up</i> <span class="label">Collapse All Sections</span>');
$labelExpanded = $('<i class="ss-icon ss-symbolicons-block">down</i> <span class="label">Expand All Sections</span>');
$labelCollapsed = $('<i class="icon-arrow-up"></i> <span class="label">Collapse All Sections</span>');
$labelExpanded = $('<i class="icon-arrow-down"></i> <span class="label">Expand All Sections</span>');
var buttonLabel = $button.hasClass('is-activated') ? $labelCollapsed : $labelExpanded;
$button.toggleClass('is-activated').html(buttonLabel);