Version added to footer

This commit is contained in:
Mark McDowall 2013-06-14 21:02:40 -07:00
parent 0ae1865dd8
commit f94220c5ff
10 changed files with 52 additions and 18 deletions

11
UI/Shared/Footer/Model.js Normal file
View file

@ -0,0 +1,11 @@
"use strict";
define(['app'], function () {
NzbDrone.Shared.Footer.Model = Backbone.Model.extend({
defaults: {
'version' : '0.0.0.0'
}
});
return NzbDrone.Shared.Footer.Model;
});