Skip to content

Commit

Permalink
Renamed files
Browse files Browse the repository at this point in the history
  • Loading branch information
robinpoort committed Mar 15, 2018
1 parent f03c690 commit f5fee97
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function(grunt) {
},
dist: {
files: {
"dist/css/style.css": "src/scss/style.scss"
"dist/css/menu-animation.css": "src/scss/menu-animation.scss"
}
}
},
Expand Down Expand Up @@ -78,8 +78,8 @@ module.exports = function(grunt) {
},
build: {
files: {
"dist/js/scripts.js": [
"src/scripts/main.js"
"dist/js/menu-animation.js": [
"src/js/menu-animation.js"
]
}
}
Expand All @@ -99,7 +99,7 @@ module.exports = function(grunt) {
}
},
javascript: {
files: ["src/scripts/*.js"],
files: ["src/js/*.js"],
tasks: ["uglify"],
options: {
interrupt: true,
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu animation</title>
<link rel="stylesheet" href="dist/css/style.css">
<link rel="stylesheet" href="dist/css/menu-animation.css">
<style>
body {
margin: 0;
Expand Down Expand Up @@ -189,7 +189,7 @@
</nav>

<!-- loading menu animation -->
<script src="dist/js/scripts.js"></script>
<script src="dist/js/menu-animation.js"></script>

<!-- initializing the menu -->
<script type="text/javascript">
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f5fee97

Please sign in to comment.