You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
438 B
19 lines
438 B
11 years ago
|
'use strict';
|
||
|
|
||
|
define(
|
||
|
[
|
||
|
'handlebars'
|
||
|
], function (Handlebars) {
|
||
|
|
||
|
Handlebars.registerHelper('currentVersion', function (version) {
|
||
|
var currentVersion = window.NzbDrone.ServerStatus.version;
|
||
|
|
||
|
if (currentVersion === version)
|
||
|
{
|
||
|
return new Handlebars.SafeString('<i class="icon-ok" title="Installed"></i>');
|
||
|
}
|
||
|
|
||
|
return '';
|
||
|
});
|
||
|
});
|