|
|
@ -1487,19 +1487,20 @@ function initVroom(room) { |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
error: function(data) { |
|
|
|
error: function(data) { |
|
|
|
|
|
|
|
data = data.responseJSON; |
|
|
|
|
|
|
|
if (data.msg){ |
|
|
|
|
|
|
|
$.notify(data.msg, 'error'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
else{ |
|
|
|
$.notify(locale.ERROR_OCCURRED, 'error'); |
|
|
|
$.notify(locale.ERROR_OCCURRED, 'error'); |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
success: function(data) { |
|
|
|
success: function(data) { |
|
|
|
if (data.status == 'success'){ |
|
|
|
|
|
|
|
if (data.msg){ |
|
|
|
if (data.msg){ |
|
|
|
$.notify(data.msg, 'success'); |
|
|
|
$.notify(data.msg, 'success'); |
|
|
|
} |
|
|
|
} |
|
|
|
loadEtherpadIframe(); |
|
|
|
loadEtherpadIframe(); |
|
|
|
} |
|
|
|
} |
|
|
|
else if (data.msg){ |
|
|
|
|
|
|
|
$.notify(data.msg, 'error'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
var who = (peers[data.id].hasName) ? peers[data.id].displayName : locale.A_ROOM_ADMIN; |
|
|
|
var who = (peers[data.id].hasName) ? peers[data.id].displayName : locale.A_ROOM_ADMIN; |
|
|
|