Merge pull request #207 from emckean/updates-explorer-header
Change Explorer header to use LoopBack
This commit is contained in:
commit
d12753390f
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<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/typography.css' media='screen' rel='stylesheet' type='text/css'/>
|
||||||
<link href='css/reset.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'/>
|
<link href='css/screen.css' media='screen' rel='stylesheet' type='text/css'/>
|
||||||
|
@ -33,7 +33,7 @@
|
||||||
<body class="swagger-section standalone">
|
<body class="swagger-section standalone">
|
||||||
<div id='header'>
|
<div id='header'>
|
||||||
<div class="swagger-ui-wrap">
|
<div class="swagger-ui-wrap">
|
||||||
<a id="logo">StrongLoop API Explorer</a>
|
<a id="logo">LoopBack API Explorer</a>
|
||||||
<form id='api_selector'>
|
<form id='api_selector'>
|
||||||
<div class='input'>
|
<div class='input'>
|
||||||
<span class='accessTokenDisplay'>Token Not Set</span>
|
<span class='accessTokenDisplay'>Token Not Set</span>
|
||||||
|
|
|
@ -36,7 +36,7 @@ describe('explorer', function() {
|
||||||
.end(function(err, res) {
|
.end(function(err, res) {
|
||||||
if (err) throw err;
|
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');
|
'text does not contain expected string');
|
||||||
|
|
||||||
done();
|
done();
|
||||||
|
|
Loading…
Reference in New Issue