1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00

changed loading bar to not use jquery

This commit is contained in:
Omer Ganim 2014-12-31 19:05:59 +02:00
parent 6583528e94
commit 0acb98b7ce
3 changed files with 29 additions and 27 deletions

View File

@ -73,8 +73,10 @@
</ul>
</section>
<section id="home-section" class="home-section">
<div id="loading">
Loading...
</div>
</section>
<div id="loading">Loading...</div>
<hr class="home-divider"/>
</section>

View File

@ -1100,6 +1100,7 @@ div[data-twttr-id] iframe {
font-size: 20px;
padding-top: 50px;
text-align: center;
height: 500px;
}
.nav-tabs {

View File

@ -28,7 +28,6 @@ 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'));
});