Merge pull request #207 from emckean/updates-explorer-header

Change Explorer header to use LoopBack
This commit is contained in:
Miroslav Bajtoš 2017-03-24 10:32:13 +01:00 committed by GitHub
commit d12753390f
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>StrongLoop API Explorer</title>
<title>LoopBack API Explorer</title>
<link href='css/typography.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='css/reset.css' media='screen' rel='stylesheet' type='text/css'/>
<link href='css/screen.css' media='screen' rel='stylesheet' type='text/css'/>
@ -33,7 +33,7 @@
<body class="swagger-section standalone">
<div id='header'>
<div class="swagger-ui-wrap">
<a id="logo">StrongLoop API Explorer</a>
<a id="logo">LoopBack API Explorer</a>
<form id='api_selector'>
<div class='input'>
<span class='accessTokenDisplay'>Token Not Set</span>

View File

@ -36,7 +36,7 @@ describe('explorer', function() {
.end(function(err, res) {
if (err) throw err;
assert(!!~res.text.indexOf('<title>StrongLoop API Explorer</title>'),
assert(!!~res.text.indexOf('<title>LoopBack API Explorer</title>'),
'text does not contain expected string');
done();