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:
parent
6583528e94
commit
0acb98b7ce
@ -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>
|
||||
|
||||
|
@ -1100,6 +1100,7 @@ div[data-twttr-id] iframe {
|
||||
font-size: 20px;
|
||||
padding-top: 50px;
|
||||
text-align: center;
|
||||
height: 500px;
|
||||
}
|
||||
|
||||
.nav-tabs {
|
||||
|
@ -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'));
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user