Skip to content

Commit

Permalink
fix https errors on ace.c9.io
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwing committed Feb 17, 2018
1 parent f9055b5 commit e6a41ed
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 97 deletions.
Binary file removed doc/site/images/weecod-logo.png
Binary file not shown.
4 changes: 2 additions & 2 deletions doc/site/js/main.js
Expand Up @@ -18,7 +18,7 @@ $(function() {
});

ace.config.loadModule("ace/ext/emmet", function() {
ace.require("ace/lib/net").loadScript("http://cloud9ide.github.io/emmet-core/emmet.js", function() {
ace.require("ace/lib/net").loadScript("https://cloud9ide.github.io/emmet-core/emmet.js", function() {
embedded_editor.setOption("enableEmmet", true);
editor.setOption("enableEmmet", true);
});
Expand Down Expand Up @@ -50,7 +50,7 @@ $(function() {
}
});

$("ul.menu-list li").click("click auxclick", function(e) {
$("ul.menu-list li").on("click auxclick", function(e) {
if (e.target.tagName !== "A") {
var href = $(this).find("a").attr("href");
if (e.originalEvent.button == 1)
Expand Down

0 comments on commit e6a41ed

Please sign in to comment.