mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 10:33:33 +00:00
Check in for tao. Bug 88277 - (JS) cut off strings when loading pkcs11 module. r=mcgreer,sr=blizzard
This commit is contained in:
parent
027de70173
commit
89a00ad87f
@ -321,8 +321,13 @@ function doLogout()
|
||||
// load a new device
|
||||
function doLoad()
|
||||
{
|
||||
//device.loaddlg.width=300
|
||||
//device.loaddlg.height=200
|
||||
var dlgWidth = bundle.GetStringFromName("device.loaddlg.width");
|
||||
var dlgHeight = bundle.GetStringFromName("device.loaddlg.height");
|
||||
//
|
||||
window.open("load_device.xul", "loaddevice",
|
||||
"chrome,width=300,height=200,resizable=0,dialog=1,modal=1");
|
||||
"chrome,width=" + dlgWidth + ",height="+ dlgHeight+ ",resizable=1,dialog=1,modal=1");
|
||||
var device_list = document.getElementById("device_list");
|
||||
while (device_list.firstChild)
|
||||
device_list.removeChild(device_list.firstChild);
|
||||
|
@ -106,3 +106,7 @@ devinfo_stat_loggedin=Logged In
|
||||
devinfo_stat_ready=Ready
|
||||
enable_fips=Enable FIPS
|
||||
disable_fips=Disable FIPS
|
||||
|
||||
#device manager: load device dlg
|
||||
device.loaddlg.width=300
|
||||
device.loaddlg.height=200
|
||||
|
Loading…
Reference in New Issue
Block a user