зеркало из https://github.com/mozilla/pjs.git
add SetPixelOrPercentByID()
This commit is contained in:
Родитель
a6277f84a1
Коммит
4cf629f884
|
@ -81,6 +81,26 @@ function SetLabelEnabledByID( labelID, doEnable )
|
|||
}
|
||||
}
|
||||
|
||||
// Input string is "" for pixel, or "%" for percent
|
||||
function SetPixelOrPercentByID(elementID, percentString)
|
||||
{
|
||||
percentChar = percentString;
|
||||
dump("SetPixelOrPercent. PercentChar="+percentChar+"\n");
|
||||
|
||||
btn = document.getElementById( elementID );
|
||||
if ( btn )
|
||||
{
|
||||
if ( percentChar == "%" )
|
||||
{
|
||||
btn.setAttribute( "value", "percent" );
|
||||
}
|
||||
else
|
||||
{
|
||||
btn.setAttribute( "value", "pixels" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// All dialogs share this simple method
|
||||
function onCancel()
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче