inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Sept 3, 2015 18:47:17 GMT -8
Add the following code to your Global Header ( how to edit your forum headers) <script type="text/javascript"> /* Disable Preview Tab on Proboards V5 (Global Header)*/ /* WARNING: Dictator MOD - not suitable for tree hugging freedom lovers */ (function(fn){ var W = fn.wysiwyg.prototype._create; fn.wysiwyg.prototype._create = function(){ //force bbcode editor upon WYSIWYG load this.options.defaultEditor = 'bbcode'; //call original from within hook W.apply(this, arguments); //hide the preview tab $('#menu-item-visual').hide(); //disable keyboard shortcuts to prevent switching using keyboard proboards.hotkeys.wysiwyg = $.noop; //a delegate handler also exists on document for the shortcut so step on that too $.each($(document).data('events').keydown, function( kdi, evh){ var f = evh.handler.toString(); if(/\#menu\-item\-bbcode\s+a/.test(f)){ evh.originalHandler = evh.handler; evh.handler = $.noop; return false; } }) } })(jQuery.ui); </script>
|
|