mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-05 15:13:24 +01:00
fix focus on modal
This commit is contained in:
parent
c56698d085
commit
ae71b1331f
@ -170,8 +170,8 @@ jQuery.fn.dialogForm = function (options) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Open the modal dialog ...
|
// Open the modal dialog ...
|
||||||
this.on('shown', function() {
|
this.on('shown.bs.modal', function() {
|
||||||
$('#' + containerId + ' input:first').focus();
|
$(this).find('input:first').focus();
|
||||||
});
|
});
|
||||||
this.modal();
|
this.modal();
|
||||||
|
|
||||||
@ -466,10 +466,9 @@ $(function () {
|
|||||||
var dataTable = $('#mindmapListTable').dataTable();
|
var dataTable = $('#mindmapListTable').dataTable();
|
||||||
//remove the selected tag...
|
//remove the selected tag...
|
||||||
$("#foldersContainer li.active").remove();
|
$("#foldersContainer li.active").remove();
|
||||||
//find the second li... (all)
|
$("#foldersContainer li:first").addClass("active");
|
||||||
$("#foldersContainer li:nth-child(2)").addClass("active");
|
|
||||||
$('#foldersContainer .active i').addClass('icon-white');
|
$('#foldersContainer .active i').addClass('icon-white');
|
||||||
$("#foldersContainer li:nth-child(2)").animate({left: '+=8px'}, 'fast');
|
$("#foldersContainer li:first").animate({left: '+=8px'}, 'fast');
|
||||||
dataTable.fnReloadAjax("c/restful/maps/?q=all", callbackOnTableInit, true);
|
dataTable.fnReloadAjax("c/restful/maps/?q=all", callbackOnTableInit, true);
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user