[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-03-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

--- Comment #8 from Roan Kattouw roan.katt...@gmail.com 2011-03-09 14:03:26 
UTC ---
(In reply to comment #4)
 Created attachment 7878 [details]
 Trigger on drop events
 
 I think for older Firefox, we need to hook the ondragdrop event of the
 textfield, and for ondrop events for IE. Suggested patch included.
 
Fixed in r83583, tested in Firefox 3.6 only. If older versions of Firefox
require dragdrop, my fix won't work for them because I only hooked the drop
event, but I don't have older versions of Firefox to test with anyway. Haven't
tested on IE either, will do that now.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-03-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

--- Comment #9 from Roan Kattouw roan.katt...@gmail.com 2011-03-09 14:05:22 
UTC ---
(In reply to comment #8)
 (In reply to comment #4)
  Created attachment 7878 [details] [details]
  Trigger on drop events
  
  I think for older Firefox, we need to hook the ondragdrop event of the
  textfield, and for ondrop events for IE. Suggested patch included.
  
 Fixed in r83583
I meant r83586

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-03-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Roan Kattouw roan.katt...@gmail.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #10 from Roan Kattouw roan.katt...@gmail.com 2011-03-09 14:28:40 
UTC ---
(In reply to comment #8)
 (In reply to comment #4)
  Created attachment 7878 [details] [details]
  Trigger on drop events
  
  I think for older Firefox, we need to hook the ondragdrop event of the
  textfield, and for ondrop events for IE. Suggested patch included.
  
 Fixed in r83583, tested in Firefox 3.6 only. If older versions of Firefox
 require dragdrop, my fix won't work for them because I only hooked the drop
 event, but I don't have older versions of Firefox to test with anyway. Haven't
 tested on IE either, will do that now.
r83587 tweaks it to work on IE. Tested with IE8 and IE8-in-IE7-compat-mode.

Closing as FIXED; if there are other browsers that this doesn't work in, please
tell me, and I'll see if it's possible to fix it for them.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-03-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Gustavo gustron...@gmail.com changed:

   What|Removed |Added

 CC||gustron...@gmail.com

--- Comment #11 from Gustavo gustron...@gmail.com 2011-03-09 19:13:36 UTC ---
It seems not to be fixed. Tested in Firefox 3.6.15 and IE7.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-03-09 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

--- Comment #12 from Roan Kattouw roan.katt...@gmail.com 2011-03-09 20:13:09 
UTC ---
(In reply to comment #11)
 It seems not to be fixed. Tested in Firefox 3.6.15 and IE7.
This code isn't live on Wikipedia yet.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-02-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Mark A. Hershberger m...@everybody.org changed:

   What|Removed |Added

   Keywords||patch
 CC||m...@everybody.org

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-01-24 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Cacycle cacycl...@gmail.com changed:

   What|Removed |Added

 CC||cacycl...@gmail.com

--- Comment #6 from Cacycle cacycl...@gmail.com 2011-01-24 21:59:24 UTC ---
The only reliable and robust way that I have found to accomplish a help text
that disappears on dropping and editing is as follows:

Underlay the transparent input field with a div of the same size that holds the
help text. Remove the help text for any editing activity. Without a separate
div there is no way to untangle the existing help text from the dropped
content. Would be nice if you could add this as this bug is slightly annoying
in Firefox :-)


div class=parent
  div class=help/div
  input type=text class=input /
/div

.parent {
  position: relative;
}

.input, .help {
  position: relative;
  background: transparent;
  /* more styling here */
}

.help {
  position: absolute;
  top: 0;
  left: 0;
  color: #888;
  border-color: transparent;
  background: white;
}


help.html(helpText);
input.bind('click mouseup mousedown paste drop focus keydown', function(event)
{
  help.val('');
  input.unbind('click mouseup mousedown paste drop focus keydown');
});

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2011-01-24 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

--- Comment #7 from Cacycle cacycl...@gmail.com 2011-01-25 07:12:17 UTC ---
Oops, it must be:

  input.unbind('click mouseup mousedown paste drop focus keydown', event);

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2010-11-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

--- Comment #4 from Derk-Jan Hartman hart...@videolan.org 2010-11-30 20:39:13 
UTC ---
Created attachment 7878
  -- https://bugzilla.wikimedia.org/attachment.cgi?id=7878
Trigger on drop events

I think for older Firefox, we need to hook the ondragdrop event of the
textfield, and for ondrop events for IE. Suggested patch included.

For the latest firefox versions, this seems to be a bug in their input fields
'placeholder' implementation.
https://bugzilla.mozilla.org/show_bug.cgi?id=595310

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2010-11-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||amil...@wikimedia.org,
   ||asha...@wikimedia.org,
   ||roan.katt...@gmail.com
  Component|General/Unknown |UsabilityInitiative
Version|unspecified |any
 AssignedTo|wikibug...@lists.wikimedia. |tpars...@wikimedia.org
   |org |
Product|Wikimedia   |MediaWiki extensions
   Severity|enhancement |minor

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2010-11-30 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Derk-Jan Hartman hart...@videolan.org changed:

   What|Removed |Added

 CC||liang...@gmail.com

--- Comment #5 from Derk-Jan Hartman hart...@videolan.org 2010-11-30 20:43:28 
UTC ---
*** Bug 24498 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 26135] Wikipedia search box should allow drag-and-drop in Vector

2010-11-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=26135

Cenarium cenarium.sy...@gmail.com changed:

   What|Removed |Added

Summary|Wikipedia search box should |Wikipedia search box should
   |allow drag-and-drop |allow drag-and-drop in
   ||Vector

--- Comment #3 from Cenarium cenarium.sy...@gmail.com 2010-11-28 19:10:20 UTC 
---
It's an issue on Wikipedia with default skin in firefox and IE. Chrome works
ok.

Also, strangely the text 'search' appears on Wiktionary with IE, but it does
not appear with firefox, and drag and drop works on wiktionary with firefox but
it does not work with IE (all on default skin). Chrome works ok on Wiktionary.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l