mirror of
https://github.com/corda/corda.git
synced 2024-12-30 09:48:59 +00:00
Fixed review issues and added a link to the official R3 favicon
This commit is contained in:
parent
46b63fd967
commit
1f556839bd
@ -8,8 +8,9 @@
|
|||||||
|
|
||||||
<!-- Site Properties -->
|
<!-- Site Properties -->
|
||||||
<title>IRS Demo Viewer</title>
|
<title>IRS Demo Viewer</title>
|
||||||
<link rel="stylesheet" type="text/css" href="js/bower_components/semantic/dist/semantic.css">
|
<link rel="shortcut icon" type="image/x-icon" href="http://r3cev.com/favicon.ico" />
|
||||||
<link rel="stylesheet" type="text/css" href="css/main.css">
|
<link rel="stylesheet" type="text/css" href="js/bower_components/semantic/dist/semantic.css" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/main.css" />
|
||||||
|
|
||||||
<script data-main="js/require-config" src="js/bower_components/requirejs/require.js"></script>
|
<script data-main="js/require-config" src="js/bower_components/requirejs/require.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -18,8 +18,9 @@ define(['angular', 'lodash', 'viewmodel/Deal'], (angular, _, dealViewModel) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let changeDateOnNode = (newDate) => {
|
let changeDateOnNode = (newDate) => {
|
||||||
const dateStr = formatDateForNode(newDate)
|
const dateStr = formatDateForNode(newDate);
|
||||||
return load('date', $http.put('http://localhost:31338/api/irs/demodate', "\"" + dateStr + "\"")).then((resp) => {
|
let endpoint = '/api/irs/demodate';
|
||||||
|
return load('date', $http.put(endpoint, "\"" + dateStr + "\"")).then((resp) => {
|
||||||
date = newDate;
|
date = newDate;
|
||||||
return this.getDateModel(date);
|
return this.getDateModel(date);
|
||||||
});
|
});
|
||||||
|
@ -20,7 +20,7 @@ define([], () => {
|
|||||||
},
|
},
|
||||||
valuationDate: "Every Local Business Day",
|
valuationDate: "Every Local Business Day",
|
||||||
notificationTime: "2:00pm London",
|
notificationTime: "2:00pm London",
|
||||||
resolutionTime: "2:00pm London time on the first LocalBusiness Day following the date on which the notice is give",
|
resolutionTime: "2:00pm London time on the first LocalBusiness Day following the date on which the notice is given",
|
||||||
interestRate: {
|
interestRate: {
|
||||||
oracle: "Rates Service Provider",
|
oracle: "Rates Service Provider",
|
||||||
tenor: {
|
tenor: {
|
||||||
|
Loading…
Reference in New Issue
Block a user