Add smarts to vixen which number buttons. "Button1", "Button2", "Button3", etc. (originally all buttons would be "Button1"). r=ben

This commit is contained in:
rcassin%supernova.org 2000-09-03 23:01:03 +00:00
Родитель ccbf587369
Коммит 140442693c
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -1,6 +1,7 @@
const XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var numButtons = 0;
var nsVFD = {
insertButtonElement: function (aButtonElementType)
@ -8,8 +9,8 @@ var nsVFD = {
switch (aButtonElementType) {
case "button":
var button = document.createElementNS(XUL_NS, "button");
// insert some smarts to autogenerate button labels
button.setAttribute("value", "Button1");
numButtons++;
button.setAttribute("value", "Button"+numButtons);
button.setAttribute("flex", "1");
button.setAttribute("crop", "right");