1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
|
Suche nach: (Falls noch keiner meiner BBCodes eingebaut wurde, also, GoogleVideo oder MyVideo)
-----------
inserttext = prompt(((theTag == "IMG") ? (img_prompt) : (tag_prompt)) + "\n[" + theTag + "]xxx[/" + theTag + "]", promptText);
Und ersetze es durch folgendes:
-------------------------------
switch (theTag) {
default: inserttext = prompt(((theTag == "IMG") ? (img_prompt) : (tag_prompt)) + "\n[" + theTag + "]xxx[/" + theTag + "]", promptText); break;
case 'youtube': inserttext = prompt(youtube_prompt + "\n[" + theTag + "]Ihre YouTube ID[/" + theTag + "]", promptText); break;
}
Falls sie doch eingebaut sind dann füge füge unter:
---------------------------------------------------
default: inserttext = prompt(((theTag == "IMG") ? (img_prompt) : (tag_prompt)) + "\n[" + theTag + "]xxx[/" + theTag + "]", promptText); break;
folgendes ein:
--------------
case 'youtube': inserttext = prompt(youtube_prompt + "\n[" + theTag + "]Ihre YouTube ID[/" + theTag + "]", promptText); break;
|