Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Your jquery is being blocked, facebook blocks every script that comes from a non secure url, so change this:</p> <p><code>http://code.jquery.com/jquery-latest.min.js</code></p> <p>To this:</p> <pre><code>https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js </code></pre> <p>One more thing your font is also being blocked for the same reason:</p> <pre><code>http://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,700,300 </code></pre> <p>You just need to change the protocol to https</p> <pre><code>https://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,700,300 </code></pre> <p><strong>EDIT</strong></p> <p>You have one more error on your code, you're not loading the facebook javascript properly, making your app firing a javascript error, because of this you're app won't run any script</p> <p>change this:</p> <pre><code>&lt;script&gt; FB.init({ appId : 'YOUR_APP_ID', status : true, // check login status cookie : true, // enable cookies to allow the server to access the session oauth : true // enable OAuth 2.0 }); FB.Canvas.setAutoResize(); &lt;/script&gt; </code></pre> <p>to this:</p> <pre><code>&lt;script&gt; window.fbAsyncInit = function() { FB.init({ Uncaught ReferenceError: FB is not defined appId : 'YOUR_APP_ID', status : true, // check login status cookie : true, // enable cookies to allow the server to access the session oauth : true // enable OAuth 2.0 }); FB.Canvas.setAutoResize(); }; // Load the SDK Asynchronously (function(d){ var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0]; if (d.getElementById(id)) {return;} js = d.createElement('script'); js.id = id; js.async = true; js.src = "//connect.facebook.net/en_US/all.js"; ref.parentNode.insertBefore(js, ref); }(document)); &lt;/script&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload