fix tests
This commit is contained in:
parent
421d183ba3
commit
d6f26b6cd6
|
|
@ -35,7 +35,7 @@
|
|||
function inviteMusicians(e) {
|
||||
e.preventDefault();
|
||||
|
||||
context.JK.app.layout.showDialog('select-invites');
|
||||
invitationDialog.showEmailDialog();
|
||||
}
|
||||
|
||||
function cancelRsvpRequest(rsvpId) {
|
||||
|
|
@ -227,7 +227,7 @@
|
|||
|
||||
rsvpHtml = context._.template(
|
||||
$("#template-account-session-rsvp").html(),
|
||||
{user_id: request.id, avatar_url: avatar_url,
|
||||
{id: request.id, avatar_url: avatar_url,
|
||||
user_name: request.name, instruments: instrumentLogoHtml,
|
||||
latency: latencyHtml},
|
||||
{variable: 'data'}
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ else
|
|||
end
|
||||
|
||||
node :scheduled_start do |start|
|
||||
start.scheduled_start.utc.strftime("%a %e %B %Y %H:%M:%S")
|
||||
start.scheduled_start.strftime("%a %e %B %Y %H:%M:%S") if start.scheduled_start
|
||||
end
|
||||
|
||||
child(:creator => :creator) {
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@
|
|||
%td
|
||||
{{data.latency}}
|
||||
.right
|
||||
%a{href: "#", class: 'button-orange declineRsvpRequest'} CANCEL
|
||||
%a{href: "#", class: 'button-orange declineRsvpRequest', 'request-id' => "{{data.id}}"} CANCEL
|
||||
.clearall
|
||||
|
||||
%script{type: 'text/template', id: 'template-account-session-properties'}
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@
|
|||
<script type="text/template" id="template-session-invite-musicians">
|
||||
<div>
|
||||
<div class="right" layout-link="select-friends">
|
||||
<a href="#" class="btn-choose-friends button-grey" id="{choose_friends_id}">CHOOSE FRIENDS</a>
|
||||
<a href="#" class="btn-choose-friends butto
|
||||
<div class="right" layout-link="select-friendn-grey" id="{choose_friends_id}">CHOOSE FRIENDS</a>
|
||||
</div>
|
||||
{instructions}
|
||||
<div class="clearall"></div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue