Skip to content
This repository has been archived by the owner on Jan 25, 2023. It is now read-only.

Commit

Permalink
Hide broken functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketeerbkw committed Feb 17, 2015
1 parent 67080e9 commit 20c558c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 4 additions & 4 deletions framework/src/main/scala/dash.scala
Expand Up @@ -109,7 +109,7 @@ object Dash {
<div id="content">
<div id="toolBar">
<table cellspacing="0" style="text-align:left;"><tbody><tr style="vertical-align:top">
<table cellspacing="0" style="display:none;text-align:left;"><tbody><tr style="vertical-align:top">
<td>
<form accept-charset="UTF-8" id="updateForm" method="post" action="https://api.twitter.com/1/statuses/update.xml" target="upload_target">
<textarea name="status" rows="3" cols="60" id="updateInput" ></textarea>
Expand Down Expand Up @@ -137,14 +137,14 @@ object Dash {
<div style="clear:both;">
<table cellspacing="0"><tbody><tr style="vertical-align:bottom">
<td style="width:100%;">
<div class="horizDivider">
<!--<div class="horizDivider">
<div class="horizDividerInner"> </div>
</div>
</div>-->
</td>
<td style="white-space:nowrap;">
<input id="fetchNewButton" type="button" value="Fetch now!" onclick="dash.fetchNew();"/>
<input id="imgUpButton" type="button" value="Share a Photo" onclick="dash.imgUpload();"/>
<!--<input id="imgUpButton" type="button" value="Share a Photo" onclick="dash.imgUpload();"/>-->
<!--input id="markAllReadButton" type="button" value="Mark folder as read" onclick="dash.markAllRead();"/-->
<span class="toolButt"><input id="showReadButton" type="checkbox" /><label for="showReadButton">Show Read</label></span>
<select id="sortOrderSelect" onchange="dash.timeOrderChange();">
Expand Down
9 changes: 5 additions & 4 deletions ui/scripts/dash-new4.js
Expand Up @@ -1090,12 +1090,13 @@ var dash = new function () {
}

var buttStr = '<table><tbody><tr><td class="buttWrap"><span class="st_button" onclick="dash.replyTo(\''+id+'\')">&#9993;&nbsp;reply</span></td>';
buttStr += '<td class="buttWrap"><span class="st_button" onclick="dash.retweet(\''+id+'\')">&#8634;&nbsp;retweet</span></td>';
buttStr += '<tr><td class="buttWrap"><span class="st_button" onclick="dash.fav(\''+id+'\')">&#10084;&nbsp;fav</td>';
buttStr += '<td class="buttWrap"><span class="st_button" onclick="dash.newRT(\''+id+'\')">Quick RT</span></td>';
buttStr += '<td class="buttWrap"><span class="st_button" onclick="dash.retweet(\''+id+'\')">&#8634;&nbsp;retweet</span></td></tr>';
buttStr += '<tr><td class="buttWrap"><span class="st_button" onclick="dash.fav(\''+id+'\')">&#10084;&nbsp;fav</span></td>';
buttStr += '<td class="buttWrap"><span class="st_button" onclick="dash.newRT(\''+id+'\')">Quick RT</span></td></tr></tbody></table>';
// var replyButt = '<img src="reply.png" />';

$('#stat'+id+' .plcHld').html(buttStr);
// TODO: fix all these buttons
//$('#stat'+id+' .plcHld').html(buttStr);

markReadInView();
updateNav();
Expand Down

0 comments on commit 20c558c

Please sign in to comment.