MyBB Community Forums

Full Version: Removing 'television' dropdown
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey, I'm looking to remove [Image: 9fa64260.gif] from my post box completely. What exactly should I edit to do this? Thank you in advance.
Open ./jscripts/editor.js and find;
{type: 'button', name: 'php', sprite: 'php', insert: 'php', title: this.options.lang.title_php},
				{type: 'button', name: 'video', insert: 'video', image: 'television.gif', dropdown: true, title: this.options.lang.title_video, options: this.videos}
and Change it into;
{type: 'button', name: 'php', sprite: 'php', insert: 'php', title: this.options.lang.title_php}
Very nice, thank you!