raphael js Pan functionality using raphael-pan-zoom more than 9 - raphael

I love your plugin! the zoom worked perfectly, but I need more than 9 times zoom, is it possible?
Thanks,
Julio

Did you mean to post this somewhere more specific? I'm guessing it hasn't reached whoever you expected to be talking to.

Related

Clearing lightbox is not in foundation 6 so what is the alternative?

I would like to update my site from foundation 5 to 6, but I notice the clearing lightbox is gone from 6. I use it for my online albums. Is there an alternative or a solution provided?
Clearing will be a component that is added in Sites 6.2 - You can see the roadmap for it here: https://github.com/zurb/foundation-sites/issues/7759
Looks like the trend is to use orbit and reveal together in some kind of pattern as a replacement but it is now being discussed for F7.
https://github.com/foundation/foundation-sites/issues/7823

CSS3 Scaling box with box-shadow disappears in Safari 7

got a strange issue with safari 7.
I have a simple box that gets scaled on hover the funny thing since Safari 7 it seams that the box shadow disappears when scaling the box.
Does anyone else had this issue and a solution?
Running example:
http://pizzadatoni.ch/shop/chur/pizza-xxextra/
Thanks for your help :)
Looks like it's a bug in Webkit (as of this writing in the webkit nightly). Here's a simple demo to reproduce. And here's the bug report I filed.
It's not a fix, but you can avoid this problem by using filter: drop-shadow() instead of box-shadow().
Oddly enough, applying a border-radius (even a small one) seems to fix the problem.
border-radius: 0.02px;
see a demo here: http://codepen.io/anon/pen/ONWOGp

Line/Unlike - same number?

We made a fan research about our facebook page of music band.
It´s about 6 months and new fans are adding throught the LIKE button there, but there is almost the same number of unlike according to this so it has an impact on total likes on the page, where it is still about the same numerical value (at about 13.045 or less/more in tens). Today we received feedbacks from our fans, they don´t know why they aren´t still counted in Like button, so they must again click on it.
Is there any problem in setting or how can we deal with it?
Thanking you in advance for your help!

Raphael clip-rect issues with text in IE8/9

Afternoon,
I'm trying to apply a clip-rect to some text within Raphael 1.5.2, with little success. It works fine on FF, Chrome and even IE6, but doesn't appear to clip on IE8 or 8.
Here's a fiddle that illustrates the problem.
Is anyone aware of a workaround, other than move to Raphael 2?
Thanks,
Nick
Use clip-path, not clip-rect.

How to enable drag-selection in Berkelium?

I've got an application that's using Berkelium for an embedded web browser, and I'm having trouble getting the drag-selection to work. I've seen examples of other WebKit-based applications that have it working just like a normal browser (Steam, Awesomium demo), so I feel like it shouldn't be that difficult to get working, but I don't know what may be wrong.
I'm passing in all of the mouse down, mouse move, and mouse up events to the Berkelium browser (mouseButton and mouseMoved functions on the Window) and I feel like that's all I should need to do? I wasn't able to find any help online about this, so hopefully someone here might know what's going on or where to look!
Thanks!
I tried drag selection in Berkelium in my app. It works in fields, it doesn't seem to work for page text.
It looks like the second comment on this page could be a fix for you:
http://code.google.com/p/berkelium-sharp/issues/detail?id=1#c2
The shift clicking apparently works fine to highlight text, so if you send a shift down along with button down, and a shift with button up, it will select the text along with it when the user drags.
I'm not sure if this will have an adverse affect on things like selecting multiple options on a list, but if you don't have that type of thing in the site you're trying to support, it wouldn't matter. I can't think of any other adverse effects right now, but I'm sure some probably exist.
This user says it worked for him, so it's worth a shot.