Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
Fix issue #276, update base url for interactive examples ejs
Browse files Browse the repository at this point in the history
  • Loading branch information
schalkneethling committed Aug 4, 2017
1 parent f7357b9 commit 42032d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions macros/EmbedInteractiveExample.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
// Embeds a live sample from a mdn.github.io GitHub page
//
// Parameters:
// $0 - The URL of mdn.github.io page (relative)
// $0 - The URL of interactive-examples.mdn.mozilla.net page (relative)
// $1 - Keyword indicating iframe size: small, medium, or large
//
// Example call {{EmbedInteractiveExample("interactive-examples/pages/css/animation.html", "small")}}
// Example call {{EmbedInteractiveExample("pages/css/animation.html", "small")}}
//
let url = "https://mdn.github.io/" + $0;
let url = "https://interactive-examples.mdn.mozilla.net/" + $0;
let classesList = Array();
// figure out classes
Expand Down

0 comments on commit 42032d4

Please sign in to comment.