From 577761c3f2fc92e0768b02c1d232ba46e3ef348f Mon Sep 17 00:00:00 2001 From: Keivan Beigi <kay.one@gmail.com> Date: Wed, 3 Jul 2013 17:57:23 -0700 Subject: [PATCH] updated main menu icons --- UI/Index.html | 63 +++++++++++++++++++--------- UI/Series/Index/SeriesIndexLayout.js | 25 +++++------ 2 files changed, 56 insertions(+), 32 deletions(-) diff --git a/UI/Index.html b/UI/Index.html index 84e61dc7d..e72e61d82 100644 --- a/UI/Index.html +++ b/UI/Index.html @@ -22,25 +22,48 @@ <div class="row"> <div class="span12"> <ul id="main-menu-region"> - <li><a href="/"><i class="icon-film"></i> - <br> - Series</a></li> - <li><a href="/calendar"><i class="icon-calendar"></i> - <br> - Calendar</a></li> - <li><a href="history"><i class="icon-time"></i><br> - History</a></li> - <li><a href="missing"><i class="icon-folder-open"></i><br> - Missing</a></li> - <li><a href="settings"><i class="icon-cogs"></i> - <br> - Settings</a></li> - <li><a href="system"><i class="icon-laptop"></i> - <br> - System</a></li> - <li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KRTE52U3XJDSQ" target="_blank"><i class="icon-star"></i> - <br> - Donate</a></li> + <li> + <a href="/"> + <i class="icon-play"></i> + <br> + Series + </a> + </li> + <li> + <a href="/calendar"> + <i class="icon-calendar-empty"></i> + <br> + Calendar + </a> + </li> + <li> + <a href="history"> + <i class="icon-time"></i> + <br> + History + </a> + </li> + <li> + <a href="missing"> + <i class="icon-question"></i> + <br> + Missing + </a> + </li> + <li> + <a href="settings"> + <i class="icon-wrench"></i> + <br> + Settings + </a> + </li> + <li> + <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KRTE52U3XJDSQ" target="_blank"> + <i class="icon-heart"></i> + <br> + Donate + </a> + </li> </ul> </div> </div> @@ -64,7 +87,7 @@ <div class="container"> <div class="row"> <div class="span12"> - <div id="footer-region"></div> + <div id="footer-region"></div> </div> </div> </div> diff --git a/UI/Series/Index/SeriesIndexLayout.js b/UI/Series/Index/SeriesIndexLayout.js index 5497513d9..feb68b0ba 100644 --- a/UI/Series/Index/SeriesIndexLayout.js +++ b/UI/Series/Index/SeriesIndexLayout.js @@ -172,24 +172,25 @@ define( defaultAction: 'listView', items : [ + { + key : 'posterView', + title : '', + icon : 'icon-th-large', + callback: this._showPosters + }, + { + key : 'listView', + title : '', + icon : 'icon-th-list', + callback: this._showList + }, { key : 'tableView', title : '', icon : 'icon-table', callback: this._showTable }, - { - key : 'listView', - title : '', - icon : 'icon-list', - callback: this._showList - }, - { - key : 'posterView', - title : '', - icon : 'icon-picture', - callback: this._showPosters - } + ] };