Skip to content

Commit

Permalink
Merge pull request #12 from goliney/develop
Browse files Browse the repository at this point in the history
fix(package)
  • Loading branch information
goliney authored Oct 30, 2016
2 parents 5ddb5b2 + 1bbaed7 commit 5bbdb33
Show file tree
Hide file tree
Showing 69 changed files with 7,418 additions and 43 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@

# ignore ng-admin source
/lib/templates/default/static/js/vendor/
/coverage/
/coverage/
/example/
49 changes: 49 additions & 0 deletions example/build/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title> Coderoom</title>

<link rel="stylesheet" href="./static/font-awesome-4.6.3/css/font-awesome.min.css">
<link rel="stylesheet" href="./static/css/base.css">

<link rel="apple-touch-icon" sizes="152x152" href="./static/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="./static/favicons/apple-touch-icon-180x180.png">
<link rel="shortcut icon" href="./static/favicons/favicon.ico">
</head>
<body>
<!-- sidebar -->
<section id="sidebar">
<header>
<a href="./index.html">source</a>
</header>
<ul id="menu">
<li>
<a class="link" href="./tpls/0/index.html">Folder 1</a>
</li>
<li>
<a class="link" href="./tpls/1/index.html">Folder 2</a>
</li>

</ul>
</section>
<!-- /sidebar -->

<!-- main -->
<div id="main">
<!-- landing -->
<div id="landing">&#8592; Pick code sample to show</div>
<!-- /landing -->
<!-- /content -->
</div>
<!-- /main -->

<div id="backdrop" class="hidden"></div>

<script src="./static/js/vendor/ace/ace.js" type="text/javascript" charset="utf-8"></script>
<script src="./static/js/vendor/ace/mode-html.js" type="text/javascript" charset="utf-8"></script>
<script src="./static/js/vendor/jquery-2.2.3.min.js" type="text/javascript" charset="utf-8"></script>
<script src="./static/js/base.js" type="text/javascript" charset="utf-8"></script>
<script src="./static/js/editor.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>
24 changes: 24 additions & 0 deletions example/build/media/media.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
html,
body {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
background-color: #6a8474;
font-size: 18px;
}

h1 {
color: white;
font-size: 1.2em;
}

h2 {
color: white;
font-size: 1em;
}

h3 {
color: white;
font-size: 0.8em;
}
3 changes: 3 additions & 0 deletions example/build/media/media.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
(function () {
document.write('<h1>This is added from media.js</h1>\n');
})();
1 change: 1 addition & 0 deletions example/build/static/css/base.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions example/build/static/css/base.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example/build/static/favicons/favicon.ico
Binary file not shown.
Loading

0 comments on commit 5bbdb33

Please sign in to comment.