'use strict'; oml.ui.appDialog = function() { var ui = oml.user.ui, tabs = Ox.getObjectById(oml.config.pages, 'app').parts.map(function(tab) { return { id: tab.id, title: tab.title.replace(/ Open Media Library$/, ''), selected: tab.id == ui.part.app }; }), $panel = Ox.TabPanel({ content: function(id) { var $content = Ox.Element(), $logo = Ox.Element(), $text = Ox.Element() .addClass('OxTextPage OxSelectable'), title = Ox._(Ox.getObjectById( Ox.getObjectById(oml.config.pages, 'app').parts, id ).title); $('') .attr({ src: '/static/png/oml.png' }) .css({ position: 'absolute', left: '16px', top: '16px', width: '192px', height: '192px' }) .appendTo($logo); if (id == 'update') { var titleHTML = '
' + Ox._('A newer version of Open Media Library is available in git.') + '
'
+ Ox._('To update run:')
+ ' ./ctl update
'
);
} else {
$content.html(
titleHTML
+ '
' + Ox._('You are running Open Media Library version {0}.', [response.data.current]) + '
' + Ox._('A newer version is available.') + '
' ); Ox.Button({ id: 'update', title: Ox._('Install Now'), width: 128 }).bindEvent({ click: function() { this.options({ disabled: true, title: Ox._('Installing...') }); oml.api.restart({update: true},function(response) { if (response.status.code == 200) { setTimeout(reload, 500); } }); } }).appendTo($content); } } else { if (response.data.current == 'git') { $content.html( titleHTML + '' + Ox._('You are up to date.') + '
' ); } else { $content.html( titleHTML + '' + Ox._('You are running Open Media Library version {0}.', [response.data.current]) + '
' + Ox._('You are up to date.') + '
' ); } } }); } else { $content.html('The lazy brown fox jumped over the lazy black fox, but other than that not really much happened here since you last checked.'); } $('