1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-11-29 04:24:11 +01:00

Bookmark: Remove depr. function fillWindow, ref #73

Thanks Raydiation for the hint
This commit is contained in:
Brice Maron 2012-11-06 21:05:30 +00:00
parent 2fc9a2beea
commit 2462d34a42
2 changed files with 6 additions and 6 deletions

View File

@ -33,8 +33,11 @@ input.disabled, input.disabled:hover {
.bookmarks_list { .bookmarks_list {
overflow: auto; overflow: auto;
position: fixed; -moz-box-sizing: border-box;
top: 6.5em; box-sizing: border-box;
padding-top: 3em;
width: 100%;
height: 100%;
} }
#add_url { #add_url {

View File

@ -10,11 +10,8 @@ $(document).ready(function() {
$('#settingsbtn').on('click keydown', toggleSettings); $('#settingsbtn').on('click keydown', toggleSettings);
$('#bm_export').click(exportBm); $('#bm_export').click(exportBm);
$(window).resize(function () {
fillWindow($('.bookmarks_list'));
});
$(window).resize(); $(window).resize();
$('.bookmarks_list').scroll(updateOnBottom).empty().width($('#rightcontent').width()); $('.bookmarks_list').scroll(updateOnBottom).empty();
$('#tag_filter input').tagit({ $('#tag_filter input').tagit({
allowSpaces: true, allowSpaces: true,
availableTags: fullTags, availableTags: fullTags,