Quote:
Originally Posted by puertoblack2003
this is more in coding in files than what allan has produced in phrases which on my board some how couldn't get it to work...i'll try this one....
|
All these additions and other ways of doing them are good, but a little messy. Here is how I would do it.
After installing the modification open vbulletin_quick_edit.js
Find:
Code:
// Show going advanced message
fetch_object('qe_advanced_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Replace with:
Code:
// Show going advanced message
fetch_object('qe_advanced_' + vB_QuickEditor.postid).style.display = '';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Find:
Code:
// Show saving post message
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Replace with:
Code:
// Show saving post message
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = '';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Find:
Code:
// Show removing post message
fetch_object('qe_delete_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Replace with:
Code:
// Show removing post message
fetch_object('qe_delete_' + vB_QuickEditor.postid).style.display = '';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = '';
document.body.style.cursor = 'wait';
Find:
Code:
// Hide sending post message and reset cursor
document.body.style.cursor = 'auto';
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = 'none';
Replace with:
Code:
// Hide sending post message and reset cursor
document.body.style.cursor = 'auto';
fetch_object('qe_posting_' + vB_QuickEditor.postid).style.display = 'none';
fetch_object('qe_image_' + vB_QuickEditor.postid).style.display = 'none';
Open the postbit, and postbit_legacy templates.
Find:
HTML Code:
<!-- Quick Edit messages -->
<br />
<div id="qe_posting_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[post_wait_loo]</strong></div>
<div id="qe_delete_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[delete_wait_loo]</strong></div>
<div id="qe_advanced_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[bigreply_wait_loo]</strong></div>
<!-- Quick Edit messages -->
Replace with:
HTML Code:
<!-- Quick Edit messages -->
<br />
<div id="qe_posting_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[post_wait_loo]</strong></div>
<div id="qe_delete_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[delete_wait_loo]</strong></div>
<div id="qe_advanced_$post[postid]" style="display:none; margin-top:6px" align="center"><strong>$vbphrase[bigreply_wait_loo]</strong></div>
<br />
<div id="qe_image_$post[postid]" style="display:none; margin-top:6px" align="center"><img src="$stylevar[imgdir_misc]/loading.gif" alt="Loading...." border="0" /></div>
<!-- Quick Edit messages -->
Last but not least upload an image named 'loading.gif' to your misc image directory located at: /vbulletin/images/misc. Some styles may have other paths, so you'll need to upload the image for each style!
Also ctrl+f5 again to clear the cache.