| 12345678910111213141516171819202122232425262728293031 |
- App.Events = (function(lng, undefined) {
- lng.ready(function() {
- //lng.View.Aside.toggle('.onright');
- setTimeout(function() {
- lng.View.Element.progress('#progress-normal', 50, true, 'yeah');
- lng.View.Element.progress('#progress-big', 75, true, 'yeah');
- lng.View.Element.loading('#loading-code', 'white');
- }, 1000);
- });
- //SPECIAL
- $$('section#navigation').on('load', function(event) {
- console.error('Load #navigation', event);
- });
- $$('section#navigation').on('unload', function(event) {
- console.error('Unload', event);
- });
- $$('article#authors').on('load', function(event) {
- console.error('loaded article');
- });
- })(LUNGO);
|