var ShareView = View.extend({ el: ".share", events: { "click #share_facebook": "facebook", "click #share_twitter": "twitter", } initialize: function(opt){ this.parent = opt.parent }, facebook: function (e) { e.preventDefault() var msg = $(".roomName").html() + " on VValls" var url = "https://www.facebook.com/share.php?u=" + encodeURIComponent(window.location.origin + window.location.pathname) + "&t=" + encodeURIComponent(msg); window.open(url, "_blank") }, twitter: function (e) { e.preventDefault() var msg = $(".roomName").html() + " on VValls" var url = "https://twitter.com/home?status=" + encodeURIComponent(window.location.origin + window.location.pathname + " " + msg); window.open(url, "_blank") } }