Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- require ([
- 'jquery',
- 'text',
- 'json',
- 'domReady',
- 'knockout',
- 'mainModel',
- 'bootstrap',
- 'async',
- 'async!http://maps.google.com/maps/api/js?key=SNIP&sensor=true®ion=es&language=es!callback'
- ], function($, ko, mainModel) {
- ko.applyBindings(new mainModel());
- $('.loader').fadeOut({
- complete: function() {
- $('.content-wrapper').fadeIn({
- complete: function() {
- console.log("triggering mapShown");
- $.event.trigger({
- type: "mapShown"
- });
- }
- });
- }
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment