Minor changes.

This commit is contained in:
Lars Jung 2014-06-21 20:51:02 +02:00
parent d784b7407f
commit 26857fea74
6 changed files with 15 additions and 8 deletions

View file

@ -29,7 +29,7 @@ modulejs.define('info', ['$', 'config'], function ($, config) {
addTests = function () {
addTest(
'PHP version', 'PHP version >= 5.3.0',
'PHP version', 'PHP version >= ' + setup.MIN_PHP_VERSION,
setup.HAS_PHP_VERSION
);

View file

@ -1,10 +1,10 @@
modulejs.define('view/ensure', ['$', 'core/event'], function ($, event) {
modulejs.define('view/ensure', ['$', 'config', 'core/event'], function ($, config, event) {
var selb = '#bottombar',
selr = selb + ' .right',
sela = selr + ' a',
sequence = 'powered by h5ai',
sequence = 'powered by h5ai ' + config.setup.VERSION,
url = 'http://larsjung.de/h5ai/',
isVisible = ':visible',
styleKey = 'style',