mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:24:05 -06:00
0b7ed8ffaf
* FEATURE: backend support for user-selectable components * fix problems with previewing default theme * rename preview_key => preview_theme_id * omit default theme from child themes dropdown and try a different fix * cache & freeze stylesheets arrays
18 lines
517 B
Plaintext
18 lines
517 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>QUnit Test Runner</title>
|
|
<%= stylesheet_link_tag "qunit" %>
|
|
<%= stylesheet_link_tag "test_helper" %>
|
|
<%= discourse_stylesheet_link_tag :wizard, theme_ids: nil %>
|
|
<%= javascript_include_tag "qunit" %>
|
|
<%= javascript_include_tag "wizard/test/test_helper" %>
|
|
<%= csrf_meta_tags %>
|
|
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
|
|
</head>
|
|
<body>
|
|
<div id="qunit"></div>
|
|
<div id="qunit-fixture"></div>
|
|
</body>
|
|
</html>
|