tracing issue to parseStringAsHtml: the android browser has a broken innerHTML parser that ignores link href. Argh
This commit is contained in:
parent
cefa8407ca
commit
a9f2cab637
|
@ -1,3 +1,3 @@
|
||||||
h1 {
|
body {
|
||||||
background: blue
|
background-color: blue
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,11 @@
|
||||||
(require (planet dyoo/whalesong/web-world)
|
(require (planet dyoo/whalesong/web-world)
|
||||||
(planet dyoo/whalesong/resource))
|
(planet dyoo/whalesong/resource))
|
||||||
|
|
||||||
(define-resource "hello-css.css")
|
(define-resource hello-css.css)
|
||||||
(define-resource "hello-css-main.html")
|
(define-resource hello-css-main.html)
|
||||||
|
|
||||||
(big-bang 0 (initial-view hello-css-main.html))
|
(big-bang 0
|
||||||
|
(initial-view hello-css-main.html)
|
||||||
|
(to-draw (lambda (w v) v)))
|
||||||
|
|
||||||
|
"done"
|
|
@ -569,16 +569,16 @@
|
||||||
var defaultToRender = function(){};
|
var defaultToRender = function(){};
|
||||||
|
|
||||||
View.prototype.initialRender = function(top) {
|
View.prototype.initialRender = function(top) {
|
||||||
$(top).empty();
|
$(top).empty();
|
||||||
// Special case: if this.top is an html, we merge into the
|
// Special case: if this.top is an html, we merge into the
|
||||||
// existing page.
|
// existing page.
|
||||||
if ($(this.top).children("title").length !== 0) {
|
if ($(this.top).children("title").length !== 0) {
|
||||||
$(document.head).find('title').remove();
|
$(document.head).find('title').remove();
|
||||||
}
|
}
|
||||||
$(document.head).append($(this.top).children("title"));
|
$(document.head).append($(this.top).children("title").clone(true));
|
||||||
$(document.head).append($(this.top).children("link"));
|
$(document.head).append($(this.top).children("link").clone(true));
|
||||||
|
|
||||||
$(top).append(this.top);
|
$(top).append($(this.top).clone(true));
|
||||||
|
|
||||||
// The snip here is meant to accomodate weirdness with canvas dom
|
// The snip here is meant to accomodate weirdness with canvas dom
|
||||||
// elements. cloning a canvas doesn't preserve how it draws.
|
// elements. cloning a canvas doesn't preserve how it draws.
|
||||||
|
@ -631,8 +631,9 @@
|
||||||
|
|
||||||
|
|
||||||
var parseStringAsHtml = function(str) {
|
var parseStringAsHtml = function(str) {
|
||||||
var dom = $('<div/>').append($(str));
|
var div = document.createElement("div");
|
||||||
return dom;
|
div.innerHTML = str;
|
||||||
|
return $(div);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user