Index: trunk/extensions/UsabilityInitiative/js/plugins/jquery.wikiEditor.toolbar.js |
— | — | @@ -326,25 +326,23 @@ |
327 | 327 | .text( label ) |
328 | 328 | .attr( 'rel', id ) |
329 | 329 | .data( 'context', context ) |
330 | | - .click( |
331 | | - function() { |
332 | | - |
333 | | - $(this).parent().parent().find( '.page' ).hide(); |
334 | | - $(this).parent().parent().find( '.page-' + $(this).attr( 'rel' ) ).show(); |
335 | | - $(this).siblings().removeClass( 'current' ); |
336 | | - $(this).addClass( 'current' ); |
337 | | - var section = $(this).parent().parent().attr( 'rel' ); |
338 | | - |
339 | | - //click tracking |
340 | | - if($.trackAction != undefined){ |
341 | | - $.trackAction(section + '.' + $(this).attr('rel')); |
342 | | - } |
343 | | - |
344 | | - $.cookie( |
345 | | - 'wikiEditor-' + $(this).data( 'context' ).instance + '-booklet-' + section + '-page', |
346 | | - $(this).attr( 'rel' ) |
347 | | - ); |
348 | | - } ); |
| 330 | + .bind( 'mousedown', function() { |
| 331 | + $(this).parent().parent().find( '.page' ).hide(); |
| 332 | + $(this).parent().parent().find( '.page-' + $(this).attr( 'rel' ) ).show(); |
| 333 | + $(this).siblings().removeClass( 'current' ); |
| 334 | + $(this).addClass( 'current' ); |
| 335 | + var section = $(this).parent().parent().attr( 'rel' ); |
| 336 | + |
| 337 | + //click tracking |
| 338 | + if($.trackAction != undefined){ |
| 339 | + $.trackAction(section + '.' + $(this).attr('rel')); |
| 340 | + } |
| 341 | + |
| 342 | + $.cookie( |
| 343 | + 'wikiEditor-' + $(this).data( 'context' ).instance + '-booklet-' + section + '-page', |
| 344 | + $(this).attr( 'rel' ) |
| 345 | + ); |
| 346 | + } ); |
349 | 347 | }, |
350 | 348 | buildPage : function( context, id, page ) { |
351 | 349 | var $page = $( '<div />' ).attr( { |
— | — | @@ -451,7 +449,7 @@ |
452 | 450 | .attr( 'href', '#' ) |
453 | 451 | .text( $.wikiEditor.autoMsg( section, 'label' ) ) |
454 | 452 | .data( 'context', context ) |
455 | | - .click( function() { |
| 453 | + .bind( 'mousedown', function() { |
456 | 454 | var $sections = $(this).data( 'context' ).$ui.find( '.sections' ); |
457 | 455 | var $section = |
458 | 456 | $(this).data( 'context' ).$ui.find( '.section-' + $(this).parent().attr( 'rel' ) ); |