Index: trunk/extensions/Push/includes/ext.push.tab.js |
— | — | @@ -140,7 +140,6 @@ |
141 | 141 | .join( '|' ), |
142 | 142 | }, |
143 | 143 | function( data ) { |
144 | | - alert(data); |
145 | 144 | if ( data.query ) { |
146 | 145 | var infoDiv = $( '#targetinfo' + targetId ); |
147 | 146 | |
— | — | @@ -218,6 +217,9 @@ |
219 | 218 | $( '#targettemplateconflicts' + targetId ).fadeOut( 'slow' ); |
220 | 219 | } |
221 | 220 | } |
| 221 | + else { |
| 222 | + $( '#targettemplateconflicts' + targetId ).fadeOut( 'fast' ); |
| 223 | + } |
222 | 224 | |
223 | 225 | if ( $('#checkIncFiles').length != 0 && $('#checkIncFiles').attr('checked') ) { |
224 | 226 | var overideFiles = []; |
— | — | @@ -238,6 +240,9 @@ |
239 | 241 | $( '#targetfileconflicts' + targetId ).fadeOut( 'slow' ); |
240 | 242 | } |
241 | 243 | } |
| 244 | + else { |
| 245 | + $( '#targetfileconflicts' + targetId ).fadeOut( 'fast' ); |
| 246 | + } |
242 | 247 | } |
243 | 248 | |
244 | 249 | function initiatePush( sender, pages, targetUrl, targetName ) { |