Opened 12 years ago
Last modified 4 years ago
#22660 new defect (bug)
Admin bar in multisite: mobile tap on "My Sites" dropdown in back-end doesn't work
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Future Release | Priority: | normal |
Severity: | normal | Version: | 3.4.2 |
Component: | Toolbar | Keywords: | needs-patch |
Focuses: | multisite | Cc: |
Description
Quick steps here to reproduce an issue where the "My Sites" dropdown (multisite networks) will drop down and show the "Network Admin" link and the list of your sites. But, clicking on a site (to expand and see "Dashboard", "New Post", etc.) does not happen. Tapping the blog name just closes the dropdown.
I'm not sure what's different but I can consistently reproduce this when in the admin back-end (but works OK on front-end admin bar when viewing a site):
From /wp-admin/ on a mobile device (tested on iOS 6, iPhone 5, iPad) with a multisite network:
- Tap "My Sites" in admin bar
- See "Network Admin" and list of sites below
- Tap one one of the site names
Expected: Site name expands to show "Dashboard", "New Post", etc. (same behavior as front-end when viewing site). Screenshot: http://d.pr/i/reOi
Actual: Tapping site name simply closes the "My Sites" dropdown, does not browse anywhere nor expand menu
Change History (12)
#2
@
12 years ago
- Component changed from General to Toolbar
Yeah I get it with or without script debug.
I poked around in admin-bar.js, wondered if hoverIntent had anything to do with it (as its not loaded on front-end) and ruled that out.
My ability to troubleshoot further is a bit limited from here.
#4
@
12 years ago
Ah yes, looks like it is.
I did some quick JS profiling in case it helps someone much better at this than I.
FRONT END (works as expected, jQuery not loaded)
Using Twenty Twelve, without jQuery loaded, I only get three events to go from tapping "My Sites" to tapping the name of a site because admin-bar.js comes in: http://d.pr/i/2Mhu
Tap "My Sites":
- mouseover admin-bar.js 298
Then tap "{Blog Name}":
- mouseout admin-bar.js 302
- mouseover admin-bar.js 298
BACK END (does not work, jQuery loaded)
With jQuery loaded in the back-end we get a mess of additional events: http://d.pr/i/MltG
Tap "My Sites":
- touchstart jquery.js 2
- touchstart jquery.js 2
- mouseover jquery.js 2
- mousemove jquery.js 2
- click jquery.js 2
... etc.
#5
@
12 years ago
- Version changed from trunk to 3.4.2
Not a regression, so not for 3.5. If this is a duplicate of #22505 (not sure re: frontend versus backend etc.), can someone close it?
#11
@
6 years ago
- Keywords bulk-reopened added
Is this still an issue? If not, this ticket can/should be closed.
This ticket was mentioned in Slack in #core by sabernhardt. View the logs.
4 years ago
#13
@
4 years ago
- Keywords needs-testing added; needs-patch removed
The toolbar no longer uses jQuery, so this would need re-testing to verify whether it's still a bug.
#14
@
4 years ago
- Keywords needs-patch added; bulk-reopened needs-testing removed
- Milestone set to Future Release
This is still a bug.
On Android OS, clicking the Network Admin or any links under My Sites navigates to that screen while the sub-menu expands. If you know your options before opening the site menu, you might be quick enough to tap the sub-item you want. However, the basic function of expanding does not work as expected.
Using Firefox on a Windows laptop with a touchscreen, the My Sites menu does not expand at all.
I can reproduce this too.
I have script debug on, by the way.