Skip to content

Commit

Permalink
Minor tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
jarib committed Mar 4, 2013
1 parent 951a4c5 commit ced0e26
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/hdo/webhook_deployer/public/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $(document).ready(function() {
dataType: "jsonp",

success: function(commit) {
el.append('<p><strong>' + commit.data.author.name + '</strong>: ' + commit.data.message + '</p>');
el.append('<p>' + commit.data.message + '(' + commit.data.author.name ')' '</p>');
}
});

Expand Down
6 changes: 3 additions & 3 deletions lib/hdo/webhook_deployer/views/layout.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<h2>current</h2>
<dl>
<% %w[next beta app1 app2].each do |host| %>
<dt><%= host %>.holderdeord.no</dt>
<dd data-host="<%= host %>.holderdeord.no">unknown</dd>
<dt><a href="http://<%= host %>.holderdeord.no/"><%= host %>.holderdeord.no</a></dt>
<dd data-host="<%= host %>.holderdeord.no">unknown</dd>
<% end %>
</dl>

<h2>deploys</h2>
<h2>auto-deploys (to next)</h2>
<div class="content">
<%= yield %>
</div>
Expand Down

0 comments on commit ced0e26

Please sign in to comment.