MyBB Community Forums

Full Version: Popup smiley window
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I go about changing the size of the window when you click "Get More" when you select smiley's when editing or posting a new post/thread?
Open ./jscripts/editor.js

Find:
    openGetMoreSmilies: function(editor)
    {
        MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', 240, 280);
    },

240 is the width, 280 is the height - change as desired. Smile
(2010-10-16, 01:55 PM)AJS Wrote: [ -> ]Open ./jscripts/editor.js

Find:
    openGetMoreSmilies: function(editor)
    {
        MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', 240, 280);
    },

240 is the width, 280 is the height - change as desired. Smile

Awesome, thank you! Big Grin Problem solved.