Add viewBox to SVG files to make IE happy.

This commit is contained in:
Lars Jung 2014-06-20 15:09:21 +02:00
parent 0960ef83b6
commit 759faf9647
39 changed files with 82 additions and 40 deletions

View file

@ -1,6 +1,7 @@
modulejs.define('main', ['_', 'core/event'], function (_, event) {
modulejs.require('view/ensure');
modulejs.require('view/items');
modulejs.require('view/spacing');
modulejs.require('view/viewmode');

View file

@ -0,0 +1,44 @@
modulejs.define('view/ensure', ['$', 'core/event'], function ($, event) {
var selb = '#bottombar',
selr = selb + ' .right',
sela = selr + ' a',
sequence = 'powered by h5ai',
url = 'http://larsjung.de/h5ai/',
isVisible = ':visible',
styleKey = 'style',
styleVal = 'display: inline !important',
ensure = function () {
if (
$(selr).filter(isVisible).length != 1 ||
$(sela).filter(isVisible).length != 1 ||
$(selr).text() != sequence
) {
$(selr).remove();
$('<span><a/></span>')
.addClass('right')
.attr(styleKey, styleVal)
.find('a')
.attr('href', url)
.attr('title', sequence)
.text(sequence)
.attr(styleKey, styleVal)
.end()
.prependTo(selb);
}
},
init = function () {
event.sub('ready', function () {
ensure();
setInterval(ensure, 60000);
});
};
init();
});