6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.controllers').controller('versionController', function() {
|
|
this.version = window.version;
|
|
this.commitHash = window.commitHash;
|
|
});
|