MyBB Community Forums

Full Version: Removing the first question box from this...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This code brings up some mycode.
I want to remove the first box where it asks "please enter a title for your spoiler" and only one box which is the second box which says "enter a text for your spoiler"
I can't seem to get it to only open the second prompt.

      insertSoundCloud: function()
    {
        selectedText = this.getSelectedText($(this.textarea));
        title = prompt("Please enter a title for your spoiler.", "");

        if(title)
        {
            if(!selectedText)
            {
                text = prompt("Enter a text for your spoiler.", "");
            }
            else
            {
                text = selectedText;
            }

            if(title && text)
            {
                this.performInsert("[sc]"+text+"[/sc]", "", true, false);
            }

        }
    },

i got it with trial and error