VC: "Make me moderator" -> "Make me owner"

This commit is contained in:
Pedro Ferreira 2015-03-04 12:02:19 +01:00
parent dde39d9c69
commit b988bd716f
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ $(function() {
}
});
$('.vc-toolbar .action-make-moderator').click(function() {
$('.vc-toolbar .action-make-owner').click(function() {
var $this = $(this);
$.ajax({

View File

@ -4,9 +4,9 @@
<ul class="dropdown" data-level="level1">
<li>
<a href="#"
title="{% trans name=vc_room.data.owner_identity %}You will be the moderator of this Vidyo room, replacing {{name}}.{% endtrans %}"
class="action-make-moderator" data-href="{{ url_for('vc.vc_room_modify', event_vc_room) }}">
{% trans %}Make me moderator{% endtrans %}
title="{% trans name=vc_room.data.owner_identity %}You will be the owner of this Vidyo room, replacing {{name}}.{% endtrans %}"
class="action-make-owner" data-href="{{ url_for('vc.vc_room_modify', event_vc_room) }}">
{% trans %}Make me owner{% endtrans %}
</a>
</li>
</ul>