How to restore recently closed entire window (NOTE : not tab) in chrome? - google-chrome

I had opened some tabs (around 12). Next day I opened chrome and forgot to restore the old window so what to do now? How to restore those tabs?

1, Click the three dots in the top right corner of an open Chrome window.
2. Hover over “History.”
3. Click the first option on the drop-down menu under “Recently Closed" to open the last window you shut. (If a recently closed window had multiple tabs, the number of tabs will show in the drop-down menu.)
4. Click on “Restore Window.”
Reference : https://blog.google/products/chrome/restore-browser-tabs/

Related

How do I get dev tools to open up inside of chrome? [duplicate]

This question already has answers here:
How to reposition Chrome Developer Tools
(9 answers)
Closed 7 months ago.
Every time I open dev tools in google chrome, it opens in a new window. Is there a way for it to open up inside of my chrome window? I'm using a mac if that makes a difference
Thank you!
Ky
Left click on the page you want the dev-tools to open up on and click on the inspect option.
On the top right corner of the developer tools window there is a kebab (three dots arranged vertically) menu where you can select how you want it to open. You have set to a separate window (which is the first option form the left), pick one of the other options (which are dock positions):
In 3 dots in the corner in the top right you can change the view mode:

I used to have tabs at the top for each open file editor - now it only shows the currently open tab

As you can see in the screenshot:
I have 4 editors open (shown on the left side) but only the currently selected editor appears at the tab bar on the top. I used to have all 4 tabs open side by side at the top and could click on them like Internet browser tabs. I haven't found anything that tells me why this happened and how I can fix it. How can I return it to having side-by-side tabs for each editor?
Did you disable this setting? Sounds like you didn't which is strange.
Workbench > Editor: Show Tabs
Enable it to get all the tabs showing if it isn't already enabled.

Why HTML/CSS Dropdown Menu links not clicking thru on 1st click, only 2nd+ click works?

Strangely, all of the links in a HTML/CSS/JS dropdown menu (top right with parent menu items "Home" "Shop" "Create" as shown in example image), do not click-thru to their href= destinations on the 1st click. Clicking 1 time does nothing. Wait a few seconds to verify nothing happens, then click again - works browser follows the link to the destination on the 2nd click fine.
I am testing in Google Chrome.
This is the only menu or set of links having this issue in the entire site...
I've already right-clicked on them to inspect-element with the developer panel in Chrome, expecting to find some other element blocking it or something but it's not the case, the target seems clickable and the hover states work fine and everything.
View example here: http://www.PuckStyle.com
Thank you!
Update:
Here is a screenshot as requested-
(source: puckstyle.com)
I managed to find something using the Chrome dev tools checking for events.
If I remove that click event (1) then I can single click the link in the menu.
When I click the link to the script (2), the code block (3) is highlighted.
Looks like a script to double-tap. You could remove it from your site. Double-taping in your website is probably not needed.

Xcode, Utilities tab not present

The utilities tab in Xcode isn't showing up, it's just not appearing. When I stopped working on it a few hours ago, everything was fine. As I'm opening it now, the tab (the one on the extreme right) isn't on the screen. How do I get it back?
There is Hide or Show Utilities option box is there on the right side First of the XCode.If you click that it shows you and again if you click that it hides the utilities.Also see the below screenshots
When I click the Hide Or Show Utilities box,It opens
Now Again When I click that It hides the Utilities
Click on top right corner to show or hide utility, It looks like below image
Click right most button!

iOS7 - <select> menu not reset on history.back / browser back button

This is a strange bug that occurs on the iPhone 5 when navigating back to a previous page.
Here's the steps to reproduce the bug on an iPhone 5:
Select a menu option that directs to a new page
From the new page press the browser back button
Try and navigate to the same page again using the same menu
An example page to try this on is here. On this page, select 'Javascript Tutorials' from the first menu on the page. Then follow steps above...
In my situation there is no go button to follow the link (like the second menu on the example page). The option is followed when clicked. The problem with this is that because the page you returned from is selected in the menu, you are unable to navigate to it. You cant re-select it.
My question: Is this a known iOS 7 bug? And is there a solution? My search has come up empty so far.
My JS code selects the first option when the menu is generated on page load. And as said, this bug only occurs on the iPhone.
This is not an iOS 7/iPhone 5 bug.
I can recreate it in Chrome on Windows 7.
As you said,
"because the page you returned from is selected in the menu,
you are unable to navigate to it"
The menu is pre-selected because of autocomplete behavior
When you press browser "back" in step 2 (versus page refresh), browser remembers the state you left the select in
https://stackoverflow.com/a/2699400/1175496
When you re-select an option that is already selected
You haven't changed anything; so the change event doesn't fire
Scripts listening for that event (as with the onChange attribute in your example) won't send you to the page
I fix this by putting autocomplete="off" attribute on the form element containing your select;
this prevents number 1, which prevents number 2.