Cleanup js files and prepare for concatenating, move most inline js to files

git-svn-id: https://develop.svn.wordpress.org/trunk@10348 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-01-12 13:43:17 +00:00
parent 23d722d40a
commit 80fb5c79ce
52 changed files with 583 additions and 675 deletions
-98
View File
@@ -3076,104 +3076,6 @@ function find_posts_div($found_action = '') {
<input id="find-posts-submit" type="submit" class="button" value="<?php _e('Select'); ?>" />
</div>
</div>
<script type="text/javascript">
/* <![CDATA[ */
(function($){
findPosts = {
open : function(af_name, af_val) {
var st = document.documentElement.scrollTop || $(document).scrollTop();
if ( af_name && af_val )
$('#affected').attr('name', af_name).val(af_val);
$('#find-posts').show().draggable({
handle: '#find-posts-head'
}).resizable({
handles: 'all',
minHeight: 150,
minWidth: 280
}).css({'top':st+'px','left':'50%','marginLeft':'-200px'});
$('.ui-resizable-handle').css({
'backgroundColor': '#e5e5e5'
});
$('.ui-resizable-se').css({
'border': '0 none',
'width': '15px',
'height': '16px',
'background': 'transparent url(images/se.png) no-repeat scroll 0 0'
});
$('#find-posts-input').focus().keyup(function(e){
if (e.which == 27) findPosts.close(); // close on Escape
});
return false;
},
close : function() {
$('#find-posts-response').html('');
$('#find-posts').draggable('destroy').resizable('destroy').hide();
},
send : function() {
var post = {};
post['ps'] = $('#find-posts-input').val();
post['action'] = 'find_posts';
post['_ajax_nonce'] = $('#_ajax_nonce').val();
if ( $('#find-posts-pages:checked').val() )
post['pages'] = 1;
else
post['posts'] = 1;
$.ajax({
type : 'POST',
url : '<?php echo admin_url('admin-ajax.php'); ?>',
data : post,
success : function(x) { findPosts.show(x); },
error : function(r) { findPosts.error(r); }
});
},
show : function(x) {
if ( typeof(x) == 'string' ) {
this.error({'responseText': x});
return;
}
var r = wpAjax.parseAjaxResponse(x);
if ( r.errors )
this.error({'responseText': wpAjax.broken});
r = r.responses[0];
$('#find-posts-response').html(r.data);
},
error : function(r) {
var er = r.statusText;
if ( r.responseText )
er = r.responseText.replace( /<.[^<>]*?>/g, '' );
if ( er )
$('#find-posts-response').html(er);
}
};
$(document).ready(function(){
$('#find-posts-submit').click(function(e) {
if ( '' == $('#find-posts-response').html() )
e.preventDefault();
});
});
})(jQuery);
/* ]]> */
</script>
<?php
}