-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Effect.Opacity demo page not working in IE 10. #39
Comments
What I wound up doing was using the Sortable.create('photo_list',{tag:'li',overlap:'horizontal',constraint:false,starteffect:'Effect.Parallel'}); Effect.Parallel simply does nothing so it looks the same in IE10, Firefox, Chrome, Safari. Just have to hope now that it somehow doesn't break IE8. It would be great if there was a way to just change the class name of the element being dragged, then I could apply opacity with plain css. http://madrobby.github.io/scriptaculous/draggable/ Other demos that don't seem to work: |
You can actually do that by adding / removing a css class providing onStart / onEnd callbacks to your Draggable instances.
null should also be a suitable effect for your case. |
It doesn't matter what value I give to starteffect, I always get this error in dragdrop.js:
The code still works but I'd like to avoid having errors if I could. And I tried passing a function through the options named onStart but it doesn't seem to ever get called. Sortable.create('photo_list',{tag:'li',overlap:'horizontal',constraint:false, Sortable.create('photo_list',{tag:'li',overlap:'horizontal',constraint:false, Sortable.create('photo_list',{tag:'li',overlap:'horizontal',constraint:false, |
Well, the library is quite right:
So a suitable candidate is Also, |
Here is a fix for the opacity bug as the bug is related to prototype and not scriptaculous I guess. https://prototype.lighthouseapp.com/projects/8886/tickets/1278-ie-detection-and-opacity |
This official demo does not work in my IE 10.
http://madrobby.github.io/scriptaculous/effect-opacity/
I recently updated my site to get Sortables working in IE 10. They work but I see no transparency when dragging my elements around. Instead they are completely invisible.
It seems the default effect applied while dragging does not work at all in IE 10.
The text was updated successfully, but these errors were encountered: