Sha256: ec7d6a375ccf3ddf274eeff8f125b884535560a7c19f855d4dd1b0c927d9543f

Contents?: true

Size: 1.53 KB

Versions: 9

Compression:

Stored size: 1.53 KB

Contents

/* Load this script using conditional IE comments if you need to support IE 7 and IE 6. */

window.onload = function() {
	function addIcon(el, entity) {
		var html = el.innerHTML;
		el.innerHTML = '<span style="font-family: \'Flat-UI-Icons\'">' + entity + '</span>' + html;
	}
	var icons = {
			'fui-arrow-right' : '&#xe02c;',
			'fui-arrow-left' : '&#xe02d;',
			'fui-cmd' : '&#xe02f;',
			'fui-check-inverted' : '&#xe006;',
			'fui-heart' : '&#xe007;',
			'fui-location' : '&#xe008;',
			'fui-plus' : '&#xe009;',
			'fui-check' : '&#xe00a;',
			'fui-cross' : '&#xe00b;',
			'fui-list' : '&#xe00c;',
			'fui-new' : '&#xe00d;',
			'fui-video' : '&#xe00e;',
			'fui-photo' : '&#xe00f;',
			'fui-volume' : '&#xe010;',
			'fui-time' : '&#xe011;',
			'fui-eye' : '&#xe012;',
			'fui-chat' : '&#xe013;',
			'fui-search' : '&#xe01c;',
			'fui-user' : '&#xe01d;',
			'fui-mail' : '&#xe01e;',
			'fui-lock' : '&#xe01f;',
			'fui-gear' : '&#xe024;',
			'fui-radio-unchecked' : '&#xe02b;',
			'fui-radio-checked' : '&#xe032;',
			'fui-checkbox-unchecked' : '&#xe033;',
			'fui-checkbox-checked' : '&#xe034;',
			'fui-calendar-solid' : '&#xe022;',
			'fui-pause' : '&#xe03b;',
			'fui-play' : '&#xe03c;',
			'fui-check-inverted-2' : '&#xe000;'
		},
		els = document.getElementsByTagName('*'),
		i, attr, html, c, el;
	for (i = 0; ; i += 1) {
		el = els[i];
		if(!el) {
			break;
		}
		attr = el.getAttribute('data-icon');
		if (attr) {
			addIcon(el, attr);
		}
		c = el.className;
		c = c.match(/fui-[^\s'"]+/);
		if (c && icons[c[0]]) {
			addIcon(el, icons[c[0]]);
		}
	}
};

Version data entries

9 entries across 9 versions & 4 rubygems

Version Path
flatui-rails-less-1.3 vendor/assets/javascripts/icon-font-ie7.js
flatui-rails-less-1.1 vendor/assets/javascripts/icon-font-ie7.js
flatui-rails-less-1.0 vendor/assets/javascripts/icon-font-ie7.js
flatui3-rails-0.0.1 app/assets/javascripts/icon-font-ie7.js
hushed-0.0.9 web/assets/javascripts/icon-font-ie7.js
flat_rails-0.0.2 app/assets/javascripts/icon-font-ie7.js
flat_rails-0.0.1 app/assets/javascripts/icon-font-ie7.js
hushed-0.0.8 web/assets/javascripts/icon-font-ie7.js
hushed-0.0.7 web/assets/javascripts/icon-font-ie7.js