I have a draggable form that appears when clicking on a button. When
clicking on a little close button in the form''s titlebar the fom fades
away. This works all fine and dandy in Firefox and Opera, but fails in
Internet Explorer, in which the form jumps to the left edge of the
browser window without changing its top position. Interesting is that
if I fire my hide(''form'') function through the addressbar
(javascript:
...) IE does what it''s supposed to do. Can anyone steer me in the right
direction as to what might be going on here?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs
-~----------~----~----~----~------~----~------~--~---
Hey there, collideous a écrit :> ...) IE does what it''s supposed to do. Can anyone steer me in the right > direction as to what might be going on here?You might want to put a minimalistic reproduceable case online for us to try out and tinker with. -- Christophe Porteneuve a.k.a. TDD "[They] did not know it was impossible, so they did it." --Mark Twain Email: tdd-x+CfDp/qHev2eFz/2MeuCQ@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Spinoffs" group. To post to this group, send email to rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-spinoffs -~----------~----~----~----~------~----~------~--~---
Christophe,
I uploaded my files to
http://www.sonic.net/~patricks/catalog/htm/viewer.htm. It is a viewer
application for my company''s product catalogs. I use this currently on
a CD-ROM running in Portable Firefox. I''m looking to develop something
similar to run online. It therefore has to work in IE. A few links to
scripts and stylesheets:
- the stylesheet:
http://www.sonic.net/~patricks/catalog/htm/theme/css/page.css
- the scripts: http://www.sonic.net/~patricks/catalog/htm/scripts/
I''m using EventSelectors by Justin Palmer (selectors.js) which are
defined in my behaviors.js. database.js holds all the data since it is
an offline application. Lastly, functions.js holds all my functions.
The popup form that is causing problems appears when you click the
contact tab on the left, then click on one of the envelope icons. When
clicking on the close button in the titlebar of the form it will jump
to the left edge of the browser, but it will disappear correctly when
executing javascript:hide(''f''); through the addressbar.
My guess is that as you click on the button there is a change in focus
from the contact tab over to the close button for the form, that
somehow causes IE to reposition the form.
Christophe Porteneuve wrote:
> You might want to put a minimalistic reproduceable case online for us to
> try out and tinker with.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs
-~----------~----~----~----~------~----~------~--~---
The above links are no longer valid. I''ve made some major changes and
the new pages can be viewed under the following URL:
http://www.sonic.net/~patricks/swf-new/
Works all fantastically in Firefox, but unfortunately my changes
introduced an additional error in Internet Explorer. I get a runtime
error in:
var Enumerable = {
  each: function(iterator) {
    var index = 0;
    try {
      this._each(function(value) {
        try {
          iterator(value, index++);
        } catch (e) {
          if (e != $continue) throw e;
        }
      });
 =>>   } catch (e) {
      if (e != $break) throw e;
    }
  },
--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Spinoffs" group.
To post to this group, send email to
rubyonrails-spinoffs-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-spinoffs-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---