|
Revision 20267, 1.3 kB
(checked in by thorikawa, 5 years ago)
|
|
名前空間の見直し(基本的に全てのJavaScript変数をfiremobilesimulator.*以下に配置するようにした)
端末編集画面で編集した際に、その端末が選択状態になってしまうバグを修正
配列.map関数で動いていなかった部分を修正
|
| Line | |
|---|
| 1 | <?xml version="1.0"?> |
|---|
| 2 | <?xml-stylesheet href="chrome://msim/skin/options.css" type="text/css"?> |
|---|
| 3 | |
|---|
| 4 | <!DOCTYPE page SYSTEM "chrome://msim/locale/msim.dtd"> |
|---|
| 5 | |
|---|
| 6 | <page onload="parent.firemobilesimulator.options.initializeOptions()" |
|---|
| 7 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
|---|
| 8 | |
|---|
| 9 | <groupbox> |
|---|
| 10 | <caption label="&msim.options.devices.label;"/> |
|---|
| 11 | <grid> |
|---|
| 12 | <columns> |
|---|
| 13 | <column flex="1"/> |
|---|
| 14 | <column/> |
|---|
| 15 | </columns> |
|---|
| 16 | <rows> |
|---|
| 17 | <row align="top"> |
|---|
| 18 | <listbox flex="1" id="msim-listbox" rows="5" onselect="parent.firemobilesimulator.options.deviceSelected()"> |
|---|
| 19 | <listhead> |
|---|
| 20 | <listheader label="&msim.options.devices.label;"/> |
|---|
| 21 | </listhead> |
|---|
| 22 | </listbox> |
|---|
| 23 | </row> |
|---|
| 24 | <row align="top"> |
|---|
| 25 | <hbox> |
|---|
| 26 | <button label="&msim.options.add;" oncommand="parent.firemobilesimulator.options.addDevice()" accesskey="n"/> |
|---|
| 27 | <button id="msim-edit" label="&msim.options.edit;" oncommand="parent.firemobilesimulator.options.editDevice()" accesskey="e"/> |
|---|
| 28 | <button id="msim-delete" label="&msim.options.delete;" oncommand="parent.firemobilesimulator.options.deleteDevice()" accesskey="d"/> |
|---|
| 29 | <button id="msim-clearall" label="&msim.options.clearall;" oncommand="parent.firemobilesimulator.options.clearAllDeviceSettings()" accesskey="c"/> |
|---|
| 30 | </hbox> |
|---|
| 31 | </row> |
|---|
| 32 | </rows> |
|---|
| 33 | </grid> |
|---|
| 34 | </groupbox> |
|---|
| 35 | </page> |
|---|