From 784f1ffbe17521c90a3e1f5921cff21888852742 Mon Sep 17 00:00:00 2001 From: Florian Staudacher Date: Thu, 15 Mar 2012 20:15:48 +0100 Subject: [PATCH] using $ instead of jQuery ... --- public/javascripts/app/views/content_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/javascripts/app/views/content_view.js b/public/javascripts/app/views/content_view.js index 338ad1817..3bc7f0760 100644 --- a/public/javascripts/app/views/content_view.js +++ b/public/javascripts/app/views/content_view.js @@ -37,7 +37,7 @@ app.views.Content = app.views.StreamObject.extend({ showOembedContent: function() { var oembed = $(this.el).find(".oembed"); - var insertHTML = jQuery( this.embedHTML() ); + var insertHTML = $( this.embedHTML() ); var paramSeparator = ( /\?/.test(insertHTML.attr("src")) ) ? "&" : "?"; insertHTML.attr("src", insertHTML.attr("src") + paramSeparator + "autoplay=1"); oembed.html( insertHTML );