Skip to content

Commit

Permalink
show emebed container before inserting content
Browse files Browse the repository at this point in the history
this will hopefully make the nodes available to the js embeds
  • Loading branch information
leedo committed Sep 9, 2011
1 parent 207bc30 commit 6e6d0bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion share/static/alice.js
Expand Up @@ -10393,8 +10393,8 @@ Alice.Application = Class.create({
elem.style.display = "none";
return;
}
elem.innerHTML = html;
elem.style.display = "block";
elem.innerHTML = html;
Alice.makeLinksClickable(elem);
var images = elem.select("img");
if (scroll && images.length) {
Expand Down
2 changes: 1 addition & 1 deletion src/js/alice/src/alice/application.js
Expand Up @@ -105,8 +105,8 @@ Alice.Application = Class.create({
elem.style.display = "none";
return;
}
elem.innerHTML = html;
elem.style.display = "block";
elem.innerHTML = html;
Alice.makeLinksClickable(elem);
var images = elem.select("img");
if (scroll && images.length) {
Expand Down

0 comments on commit 6e6d0bf

Please sign in to comment.