diff --git a/index.html b/index.html index cb1c0e5..6bad37e 100644 --- a/index.html +++ b/index.html @@ -73,8 +73,10 @@
+
+ Loading... +
-
Loading...

diff --git a/playground/css/home.css b/playground/css/home.css index dff522b..6c9c1f2 100644 --- a/playground/css/home.css +++ b/playground/css/home.css @@ -1100,6 +1100,7 @@ div[data-twttr-id] iframe { font-size: 20px; padding-top: 50px; text-align: center; + height: 500px; } .nav-tabs { diff --git a/playground/home-main.js b/playground/home-main.js index afcfa1b..d71d5a2 100644 --- a/playground/home-main.js +++ b/playground/home-main.js @@ -1,34 +1,33 @@ requirejs.config({ // baseUrl: '/', - paths: { - lodash: 'http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min', - jquery: 'http://code.jquery.com/jquery-1.11.0.min', - firebase: 'https://cdn.firebase.com/js/client/2.0.5/firebase', - react: 'http://fb.me/react-with-addons-0.12.2', - text: 'libs/requirejs-plugins/text', - json: 'libs/requirejs-plugins/json' - //ace: '../ace-builds-1.1.8/src-min/ace', - //'react/addons': 'http://fb.me/react-with-addons-0.12.1' - }, - shim: { - lodash: { exports: '_' }, - firebase: { exports: 'Firebase' }, - //ace: { exports: 'ace' }, - jquery: { exports: '$' }, - react: { exports: 'React' } - }, - map: { - '*': { - 'react/addons': 'react' - } + paths: { + lodash: 'http://cdnjs.cloudflare.com/ajax/libs/lodash.js/2.4.1/lodash.min', + jquery: 'http://code.jquery.com/jquery-1.11.0.min', + firebase: 'https://cdn.firebase.com/js/client/2.0.5/firebase', + react: 'http://fb.me/react-with-addons-0.12.2', + text: 'libs/requirejs-plugins/text', + json: 'libs/requirejs-plugins/json' + //ace: '../ace-builds-1.1.8/src-min/ace', + //'react/addons': 'http://fb.me/react-with-addons-0.12.1' + }, + shim: { + lodash: { exports: '_' }, + firebase: { exports: 'Firebase' }, + //ace: { exports: 'ace' }, + jquery: { exports: '$' }, + react: { exports: 'React' } + }, + map: { + '*': { + 'react/addons': 'react' } + } }); requirejs(['jquery', 'react', './examples'], function ($, React, Examples) { - 'use strict'; - /*eslint new-cap:0*/ - React.render(Examples(), document.getElementById('home-section')); - $('#loading').hide(); - //window.fiddle = React.render(fiddle(), document.getElementById('container')); + 'use strict'; + /*eslint new-cap:0*/ + React.render(Examples(), document.getElementById('home-section')); + //window.fiddle = React.render(fiddle(), document.getElementById('container')); });