Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.
Prev Previous commit
Improve stage6
  • Loading branch information
Kuniwak committed Mar 17, 2015
commit 9124b06a822a305f16dd6150c6f20981c23e39c6
2 changes: 1 addition & 1 deletion public/stage6/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</head>
<body>
<div class="js-training-playground">
<button class="button button-3d-caution button-circle js-training-button">Push</button>
<button class="button button-caution button-3d button-pill button-giant js-training-button">Push</button>
</div>
<div id="mocha"></div>
<script src="/bower_components/jquery/dist/jquery.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions public/stage6/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.js-training-playground {
box-sizing: border-box;
padding: 100px 0;
height: 100px;
padding: 80px 0;
height: 250px;
}

.js-training-button {
Expand Down
5 changes: 4 additions & 1 deletion public/stage6/tests.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
'use strict';

describe('ステージ6(意図通りにモジュールを書ける)', function() {
it('あなたの満足のいくアプリケーションがここにある', function() {
it('あなたの満足のいく Web アプリケーションがここにある', function() {
// ボタンはサービスです。
// 自由に使ってください。

var qualityOfYourAppliation = undefined;

expect(qualityOfYourAppliation).to.be.ok;
Expand Down