clean styling

This commit is contained in:
Josh
2018-06-13 15:51:10 -04:00
parent 7fadd6be69
commit bc67d9e1e5
15 changed files with 81 additions and 402 deletions

View File

@ -7,7 +7,7 @@ $(document).on("turbolinks:load", function(){
if(controller == "rooms" && action == "join"){
App.waiting = App.cable.subscriptions.create({
channel: "WaitingChannel",
uid: $(".room-section").attr("room")
uid: $(".background").attr("room")
}, {
received: function(data){
if(data.action = "started"){ request_to_join_meeting(); }
@ -23,7 +23,7 @@ var request_to_join_meeting = function(){
url: window.location.pathname,
type: 'POST',
data: {
join_name: $(".room-section").attr("join-name")
join_name: $(".background").attr("join-name")
},
headers: {
'Content-Type': 'application/x-www-form-urlencoded',