Skip to content

Commit

Permalink
Rename asset folder to example
Browse files Browse the repository at this point in the history
  • Loading branch information
okcoker committed May 16, 2016
1 parent 2174c26 commit 75fb494
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 17 deletions.
8 changes: 4 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ module.exports = function(grunt) {
],

// Add in complete bundle to example folder
'assets/js/taggle.min.js': [
'example/js/taggle.min.js': [
'tmp/taggle-ie8.concat.js'
]
}
Expand All @@ -87,7 +87,7 @@ module.exports = function(grunt) {
},
dist: {
files: {
'assets/css/taggle.css': ['assets/scss/taggle.scss']
'example/css/taggle.css': ['example/scss/taggle.scss']
}
}
},
Expand All @@ -104,7 +104,7 @@ module.exports = function(grunt) {
]
},
main: {
src: 'assets/css/taggle.css'
src: 'example/css/taggle.css'
},
min: {
options: {
Expand All @@ -113,7 +113,7 @@ module.exports = function(grunt) {
]
},
files: {
'assets/css/taggle.min.css': 'assets/css/taggle.css'
'example/css/taggle.min.css': 'example/css/taggle.css'
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion assets/js/taggle.min.js

Large diffs are not rendered by default.

File renamed without changes.
3 changes: 2 additions & 1 deletion assets/css/taggle.css β†’ example/css/taggle.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ h1, h2, h3, h4, h5, h6 {
margin: 0; }

pre {
border-radius: 3px; }
border-radius: 3px;
overflow-x: scroll; }

p {
color: #000; }
Expand Down
1 change: 1 addition & 0 deletions example/css/taggle.min.css

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

File renamed without changes.
File renamed without changes
20 changes: 9 additions & 11 deletions taggle.html β†’ example/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!DOCTYPE html>
<html style="background:url(assets/images/bg.png) repeat" class="no-js" lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml">
<html style="background:url(images/bg.png) repeat" class="no-js" lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>Sean Coker | Taggle.js</title>

<meta charset="utf-8">
<link type="text/css" href="assets/css/twilight.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="assets/css/projects.min.css">
<link rel="stylesheet" type="text/css" href="assets/css/taggle.css">
<link type="text/css" href="css/twilight.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/projects.min.css">
<link rel="stylesheet" type="text/css" href="css/taggle.css">
<!--[if lte IE 8]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
Expand Down Expand Up @@ -424,12 +424,10 @@ <h4>Methods</h4>
<p class="grid12 text_center">Β© 2015<a href="http://sean.is">Sean Coker</a></p><p class="grid12 text_center">Some, if not all and/or most rights reserved.</p>
</div>
</footer>
<script src="assets/js/jquery-1.10.1.js"></script>
<script src="assets/js/jquery-ui.js"></script>
<script src="assets/js/rainbow-custom.min.js"></script>
<script src="src/taggle-ie8.js"></script>
<script src="src/taggle-ie9.js"></script>
<script src="src/taggle.js"></script>
<script src="assets/js/scripts.js"></script>
<script src="js/jquery-1.10.1.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="js/rainbow-custom.min.js"></script>
<script src="js/taggle.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 75fb494

Please sign in to comment.