mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-02-28 15:04:51 +00:00
console.js: Better wording in the addRegexpPart dialog
git-svn-id: https://svn.fhem.de/fhem/trunk@13211 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
84f995630f
commit
e657340bbd
@ -198,21 +198,19 @@ consAddRegexpPart()
|
|||||||
'div.evt label { display:block; margin-left:2em; }\n'+
|
'div.evt label { display:block; margin-left:2em; }\n'+
|
||||||
'div.evt input { float:left; }\n'+
|
'div.evt input { float:left; }\n'+
|
||||||
'</style>\n';
|
'</style>\n';
|
||||||
txt += "<div>addRegexpPart</div><br>";
|
txt += "Extend the regular expression of the device<br>";
|
||||||
|
txt += "<select id='evtDev'></select><br><br>";
|
||||||
txt += "<div class='evt'>"+
|
txt += "<div class='evt'>"+
|
||||||
"<input type='radio' name='evtType' id='rdEx' checked/>"+
|
"<input type='radio' name='evtType' id='rdEx' checked/>"+
|
||||||
"<label>as exactly this event:<br>"+re1+"</label></div><br>";
|
"<label>with exactly this event:<br>"+re1+"</label></div><br>";
|
||||||
if(re1 != re2)
|
if(re1 != re2)
|
||||||
txt += "<div class='evt'>"+
|
txt += "<div class='evt'>"+
|
||||||
"<input type='radio' name='evtType' id='rdNum'/>"+
|
"<input type='radio' name='evtType' id='rdNum'/>"+
|
||||||
"<label>with any number matching:<br>"+re2+"</label></div><br>";
|
"<label>with any number matching:<br>"+re2+"</label></div><br>";
|
||||||
txt += "Device to add: ";
|
|
||||||
txt += "<select id='evtDev'></select>";
|
|
||||||
|
|
||||||
$('body').append('<div id="addReP" style="display:none">'+txt+'</div>');
|
$('body').append('<div id="addReP" style="display:none">'+txt+'</div>');
|
||||||
$('#addReP').dialog(
|
$('#addReP').dialog(
|
||||||
{ modal:true, closeOnEscape:true,
|
{ modal:true, closeOnEscape:true, width:"auto",
|
||||||
maxWidth:$(window).width()*3/4, maxHeight:$(window).height()*3/4,
|
|
||||||
close:function(){ $('#addReP').remove(); },
|
close:function(){ $('#addReP').remove(); },
|
||||||
buttons:[
|
buttons:[
|
||||||
{ text:"Cancel", click:function(){ $(this).dialog('close'); }},
|
{ text:"Cancel", click:function(){ $(this).dialog('close'); }},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user