Fix bug #3065284: AjaxVote problem with Webkit browsers
This commit is contained in:
parent
66ee4cbe40
commit
0dd5540bfb
@ -16,6 +16,7 @@ ChangeLog for SemantiScuttle
|
|||||||
- Fix bug #3074816: French translation breaks edit javascript
|
- Fix bug #3074816: French translation breaks edit javascript
|
||||||
- Fix bug #3111254: Search in my_watchlist results in error
|
- Fix bug #3111254: Search in my_watchlist results in error
|
||||||
- Fix bug #3073215: Updating bookmark time does not work
|
- Fix bug #3073215: Updating bookmark time does not work
|
||||||
|
- Fix bug #3065284: AjaxVote problem with Webkit browsers
|
||||||
|
|
||||||
|
|
||||||
0.97.1 - 2010-09-30
|
0.97.1 - 2010-09-30
|
||||||
|
@ -155,7 +155,10 @@ function processVotingResult() {
|
|||||||
var bmnode = document.getElementById('bmv-'+bookmark);
|
var bmnode = document.getElementById('bmv-'+bookmark);
|
||||||
|
|
||||||
bmnode.parentNode.replaceChild(
|
bmnode.parentNode.replaceChild(
|
||||||
response.getElementsByTagName('html')[0].firstChild,
|
xmlhttp.responseXML.importNode(
|
||||||
|
response.getElementsByTagName('html')[0].firstChild,
|
||||||
|
true
|
||||||
|
),
|
||||||
bmnode
|
bmnode
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user