dose anyone have one that works with 3.8.x
you cant do the file edit for
================================
File: clientscript/vbulletin_textedit.js
================================
FIND:
--------------------------------
// =============================================================================
// WYSIWYG editor
// =============================================================================
--------------------------------
ADD ABOVE:
--------------------------------
/**
* Insert Charge
*/
this.insertcharge = function(e, amount)
{
if (typeof amount == 'undefined')
{
amount = this.show_prompt(vbphrase['enter_charge_amount'], '', true);
}
if ((amount = this.verify_prompt(amount)) !== false)
{
this.wrap_tags('charge', amount);
}
return true;
};
|
any help? where i add it to the new 3.8.x - i realy want this badly