Log In
Dragon Weather Castform Don't have an account yet? Register now!
.

Forum Thread

zoom

Forum-Index Bugs/Complaints Confirmed Bugs zoom
mojoryan2003
OFFLINE
Trainerlevel: 33

Forum Posts: 902
Posted: Sat, 18/04/2015 22:49 (8 Years ago)
The zoom button at my berry farm is not working. Really i could care less about this, but i thought i should report it

Credit goes to carpetmonster



Get your own CrushTag!

help

Riako
ONLINE
Trainerlevel: 69

Forum Posts: 2,595
Posted: Sat, 18/04/2015 23:17 (8 Years ago)
Does a popup appear that says something like "Your browser does not support zoom"?
Nekomaru_Nidai
OFFLINE
Trainerlevel: 55

Forum Posts: 1,277
Posted: Sat, 18/04/2015 23:20 (8 Years ago)
In Mozilla Firefox, it doesn't work for me, and it doesn't give me a pop up, it just does nothing. But I've tried on Google Chrome, and it works there
Zoen
OFFLINE
Trainerlevel: 64

Forum Posts: 71
Posted: Sun, 19/04/2015 02:49 (8 Years ago)
While Zoom works for me, my issue with it is it's not remembered when active. Every time you go back to the page you have to click Zoom again.

The Prophet has awoken~...

My mass click-list!

mojoryan2003
OFFLINE
Trainerlevel: 33

Forum Posts: 902
Posted: Sun, 19/04/2015 12:02 (8 Years ago)
KevinXDE i am also using firefox, same thing for me and no popup, sadly my computer does not support google chrome.

Credit goes to carpetmonster



Get your own CrushTag!

help

CatLady
ONLINE
Trainerlevel: 99

Forum Posts: 8,298
Posted: Sat, 09/12/2017 15:58 (6 Years ago)
Zooming in Mozilla Firefox still doesn't seem to work.
No pop-up, just clicking without result.
Credits for avatar to ~Cookie~

Kitties! Riako has no idea what he unleashed with that update🙀
Collecting Lovely Larvesta and Silly Seel Plushies~
Looking for Ice Gems and Flying Gems here! Help me hunt a Shiny Articuno!
(You can win your own non-shiny Articuno in return)
Breeding events for the cause here!
SwampFall
OFFLINE
Trainerlevel: 59

Forum Posts: 604
Posted: Tue, 10/04/2018 10:34 (5 Years ago)
For the pop up..

File:
js/berrygarden/core.js

Function:
zoomBerrygarden()

Current code:
if (stLeft - 10 >= $(".garden_interface").offset().left && stLeft + 10 <= $(".garden_interface").offset().left)

Simplified: if ( a - 10 >= b && a + 10 <= b)

This code will never be executed. if b is 20, a must be 30 or more for the first part and a must be 10 or less for the second part => impossible.

Working code:
if (stLeft - 10 <= $(".garden_interface").offset().left)


Note:
This is tested on Chrome (zooming, no pop up) and Firefox (no zoom, pop up works)
Since the if statement was impossible I don't think testing more browsers is necessary.