Index: trunk/extensions/ApiSandbox/ext.apiSandbox.js |
— | — | @@ -115,7 +115,7 @@ |
116 | 116 | e.preventDefault(); |
117 | 117 | |
118 | 118 | resetUI(); |
119 | | - link = $( this ).attr( 'href' ).replace( /^.*?\?/, '' ); |
| 119 | + link = $( this ).data( 'exampleLink' ).replace( /^.*?\?/, '' ); |
120 | 120 | params = link.split( '&' ); |
121 | 121 | for ( i = 0; i < params.length; i++ ) { |
122 | 122 | pieces = params[i].split( '=' ); |
— | — | @@ -200,7 +200,8 @@ |
201 | 201 | .append( $prefix ) |
202 | 202 | .append( |
203 | 203 | $( '<a>' ) |
204 | | - .attr( 'href', href ) |
| 204 | + .attr( 'href', '#' ) |
| 205 | + .data( 'exampleLink', href ) |
205 | 206 | .text( linkText ) |
206 | 207 | .click( exampleClick ) |
207 | 208 | ).appendTo( $list ); |