Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- document.addEventListener("deviceready", function(){
- $(document).ready(function() {
- console.log('walking.html loaded');
- $('.people').click(function(){
- // TODO
- // check to see if in walk, and warn
- // if switch page canel walk/delete
- window.location = 'index.html';
- // steroids.layers.pop();
- });
- $('.details-map-slider').iosSlider({
- snapToChildren: true,
- desktopClickDrag: true,
- onSlideComplete: app.cb_slide_change,
- });
- console.log('Slider started.');
- app.start_slidenation();
- app.start_walk();
- $('.stop').click(function(){
- app.stop_walk();
- });
- $('.pause').click(function(){
- if ($(this).hasClass('grey')) {
- app.pause_walk();
- } else {
- app.resume_walk();
- }
- $(this).toggleClass('grey orange');
- if ($(this).find('h4').hmtl() == 'Pause') {
- $(this).find('h4').hmtl('Resume');
- } else {
- $(this).find('h4').hmtl('Pause');
- };
- });
- // END DEVICE READY
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement