search for: ownerdocu

Displaying 10 results from an estimated 10 matches for "ownerdocu".

2005 Sep 27
8
prototype.js
Hi *, We don''t know if you guys are the right audience, but we got a problem with prototype.js we need to solve. Essentially, it is a compatibility bug with the IE. We wrote a component so it updates itself periodically using AJAX. we used the prototype.js to accomplish this (using the periodicalUpdater object). now the component works fine using firefox or opera, but NOT with IE. the
2005 Dec 15
0
RJS Templates and the Replace semantics
...application javascript file: // Extend the object for our RJS extension to work Object.extend(Element, { replace: function(element, html) { var el = $(element); if (el.outerHTML) { // IE el.outerHTML = html.stripScripts(); } else { // Mozilla var range = el.ownerDocument.createRange(); range.selectNodeContents(el); el.parentNode.replaceChild(range.createContextualFragment(html.stripScri pts()), el); } setTimeout(function() {html.evalScripts()}, 10); } } ); _______________________________________________ Rails mailing list Rails-1W37MK...
2006 Jan 20
1
Update HTML Element with Ajax
I have following files. list.rhtml ----------------------- <ul id="items"> <%= render(:partial => ''item'', :collection => @items) %> </ul> _item.rhtml ------------------------ <li id="<%= item.id %>" > <%= item.name %> <%= item.body %> </li> edit.rjs ------------------------ page.replace_html
2006 Apr 25
8
Does Rails suppports XHTML for views for inline SVG''s?
I have following piece of code(which when saved in a file with .xhtml extension and opened in Mozilla 1.5.0.2 works fine); <html xmlns="http://www.w3.org/1999/xhtml" xmlns:svg="http://www.w3.org/2000/svg"> <head> <title>SVG within XHTML Demo</title> </head> <body> <p> You can embed SVG into XHTML, provided that your
2011 Jun 12
3
What is someone trying to do?
...Time(s) /lib/js/b&&b.type: 1 Time(s) /lib/js/b.beforeSend&&b.beforeSend.call: 1 Time(s) /lib/js/b.data: 1 Time(s) /lib/js/b.data&&T.test: 1 Time(s) /lib/js/b.map: 1 Time(s) /lib/js/b.type: 1 Time(s) /lib/js/b.url: 1 Time(s) /lib/js/b.url;if(!d)%7Bvar: 1 Time(s) /lib/js/b===b.ownerDocument.body: 1 Time(s) /lib/js/b=b.call: 1 Time(s) /lib/js/c.css: 1 Time(s) /lib/js/c.data: 1 Time(s) /lib/js/c.each: 1 Time(s) /lib/js/c.event.add: 1 Time(s) /lib/js/c.offset.doesAddBorderForTableAndCells&&xb.test: 1 Time(s) /lib/js/d.call: 1 Time(s) /lib/js/d.exec: 1 Time(s) /lib/js/d.guid==...
2018 Mar 02
0
Wine release 3.3
...winedbg: Fix the operand order of some XMM instructions. winedbg: Add cvtdq2ps and cvtps2pd opcodes. Isira Seneviratne (1): ping: Implement -l, -w, -n using IcmpSendEcho. Jacek Caban (51): mshtml: Get owner document from Gecko node in get_node. mshtml/tests: Added more ownerDocument property tests. mshtml: Get rid of no longer needed document argument in get_node. mshtml: Get rid of no loner needed document node reference in HTMLDOMChildrenCollection. mshtml: Get rid of no longer needed document argument from script_elem_from_nsscript. mshtml: Get r...
2008 Sep 05
0
Wine release 1.1.4
...9 Serious Sam TSE 1.07 - network connection fails 10414 Minimap in Warhammer 40k: Dark Crusade is offset 10661 regedit imports wrong binary data from .reg files (affects FAR Manager) fix proposed 10902 Steam and PulseAudio 11119 XML Notepad 2007 won't start 11301 documentElement.ownerDocument.createElement fails 11357 Reflections in Tomb Raider - Anniversary Demo are buggy 11688 Lego Star Wars II: In-game sound does not work 11885 Supreme Commander is black It doesn't render anything. 11962 regedit highlights the wrong item when searching 12041 STALKER 1.0004-Tra...
2009 Nov 13
0
Wine release 1.1.33
...on. mshtml: Added fdexNameCaseInsensitive support. mshtml: Don't create dynamic property if alloc arg is false. mshtml: Moved global property allocation to separated function. mshtml: Added support for accessing elements id by global properties. mshtml: Return NULL ownerDocument for document node. mshtml: Moved readystate changes to separated function. mshtml: Handle EndLoad via script runner. mshtml: Moved add_script_runner call to push_mutation_queue. mshtml: Moved readystate to HTMLWindow. jscript: Don't return function value it'...
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...osition]; if (content && content.toElement) content = content.toElement(); if (Object.isElement(content)) { - t.insert(element, content); + insert(element, content); continue; } content = Object.toHTML(content); - range = element.ownerDocument.createRange(); - t.initializeRange(element, range); - t.insert(element, range.createContextualFragment(content.stripScripts())); + tagName = ((position == 'before' || position == 'after') + ? element.parentNode : element).tagName.toUpperCase(); + + chi...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server