• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision6442751a3a5b9e9c2f703d521c610bbf36b714b0 (tree)
Time2013-04-17 13:49:50
Authortes-okumura <tes-okumura@sint...>
Commitertes-okumura

Log Message

登録完了画面の文言をカラーリング

Change Summary

Incremental Difference

--- a/back/app/Complete.php
+++ b/back/app/Complete.php
@@ -12,19 +12,19 @@ final class Complete extends Action {
1212 public function index() {
1313 switch ($this->dto->option) {
1414 case 'register':
15- $this->dto->operate = '登録';
15+ $this->dto->operate = '<span style="color:#0000FF;">登録</span>';
1616 $this->dto->editMode = '0';
1717 break;
1818 case 'modify':
19- $this->dto->operate = '更新';
19+ $this->dto->operate = '<span style="color:#0000FF;">更新</span>';
2020 $this->dto->editMode = '1';
2121 break;
2222 case 'temp_register':
23- $this->dto->operate = '一時保存';
23+ $this->dto->operate = '<span style="color:#FF0000;">一時保存</span>';
2424 $this->dto->editMode = '0';
2525 break;
2626 case 'temp_modify':
27- $this->dto->operate = '一時保存';
27+ $this->dto->operate = '<span style="color:#FF0000;">一時保存</span>';
2828 $this->dto->editMode = '1';
2929 break;
3030 }