mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-21 03:06:34 +01:00
Enter accept editing Speed Dial entries. Closes #76
This commit is contained in:
parent
3e62bee69d
commit
091c944132
@ -49,6 +49,13 @@ function onRemoveClick(box) {
|
|||||||
removeBox($(box).index());
|
removeBox($(box).index());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function onEditKeyPress(e) {
|
||||||
|
if (e.keyCode == 13) {
|
||||||
|
boxEdited();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function onEditClick(box) {
|
function onEditClick(box) {
|
||||||
editingId = $(box).index();
|
editingId = $(box).index();
|
||||||
var boxUrl = $(box).children('a').first().attr('href');
|
var boxUrl = $(box).children('a').first().attr('href');
|
||||||
@ -58,7 +65,7 @@ function onEditClick(box) {
|
|||||||
|
|
||||||
$('body').append('<div id="fadeOverlay" style="opacity:0.95;display:none;position:fixed;left:0;' +
|
$('body').append('<div id="fadeOverlay" style="opacity:0.95;display:none;position:fixed;left:0;' +
|
||||||
'top:0;width:100%;height:100%;z-index:9999;background:grey;">' +
|
'top:0;width:100%;height:100%;z-index:9999;background:grey;">' +
|
||||||
'<div id="overlay-edit"><img src="' + $(box).children('img').first().attr('src') + '"> ' +
|
'<div id="overlay-edit" onkeypress="return onEditKeyPress(event)"><img src="' + $(box).children('img').first().attr('src') + '"> ' +
|
||||||
'<table class="formTable"><tr><td>' + URL + ': </td><td><input type="text" ' +
|
'<table class="formTable"><tr><td>' + URL + ': </td><td><input type="text" ' +
|
||||||
'id="formUrl" value="' + boxUrl + '"></td></tr>' +
|
'id="formUrl" value="' + boxUrl + '"></td></tr>' +
|
||||||
'<tr><td>' + TITLE + ': </td><td><input maxlength="25" type="text" id="formTitle" value="' + boxTitle +
|
'<tr><td>' + TITLE + ': </td><td><input maxlength="25" type="text" id="formTitle" value="' + boxTitle +
|
||||||
|
Loading…
Reference in New Issue
Block a user