forked from mirrors/gecko-dev
		
	The overlay was responsible for script loading and defining three elements (bhTooltip, placesCommands, placesContext). In the majority of places where the overlay was included only part of it was used. To remove the overlay, the elements were each split into include files and moved into where they were used. For the scripts, a JS file was added that defines all the lazy modules and then this script, globalOverlay.js and utilityOverlay.js were inlined to everywhere that would have included them from the overlay. MozReview-Commit-ID: 8T5D46oYWLn --HG-- rename : browser/components/places/content/placesOverlay.xul => browser/components/places/content/placesCommands.inc.xul rename : browser/components/places/content/placesOverlay.xul => browser/components/places/content/placesContextMenu.inc.xul extra : rebase_source : c1071af4ea264a95183cbc65caae98feb23d58e5
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
 | 
						|
/* This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 | 
						|
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 | 
						|
 | 
						|
/* import-globals-from ../../../../toolkit/components/places/PlacesUtils.jsm */
 | 
						|
 | 
						|
function init() {
 | 
						|
  document.getElementById("bookmarks-view").place =
 | 
						|
    "place:type=" + Ci.nsINavHistoryQueryOptions.RESULTS_AS_ROOTS_QUERY;
 | 
						|
}
 | 
						|
 | 
						|
function searchBookmarks(aSearchString) {
 | 
						|
  var tree = document.getElementById("bookmarks-view");
 | 
						|
  if (!aSearchString)
 | 
						|
    tree.place = tree.place;
 | 
						|
  else
 | 
						|
    tree.applyFilter(aSearchString,
 | 
						|
                     [PlacesUtils.bookmarksMenuFolderId,
 | 
						|
                      PlacesUtils.unfiledBookmarksFolderId,
 | 
						|
                      PlacesUtils.toolbarFolderId,
 | 
						|
                      PlacesUtils.mobileFolderId]);
 | 
						|
}
 | 
						|
 | 
						|
window.addEventListener("SidebarFocused",
 | 
						|
                        () => document.getElementById("search-box").focus());
 |