Skip to content

Commit

Permalink
Merge pull request #1 from brain11f/workingbranch
Browse files Browse the repository at this point in the history
Workingbranch
  • Loading branch information
Brian11f committed Oct 19, 2015
2 parents 3c41ea4 + cd6f361 commit b2801cb
Show file tree
Hide file tree
Showing 28 changed files with 383 additions and 446 deletions.
2 changes: 1 addition & 1 deletion gulp/tasks/default.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var gulp = require('gulp');

gulp.task('default', ['sass', 'html', 'index', 'ngConfig', 'webpack', 'watch', 'serve']);
gulp.task('default', ['sass', 'html', 'index', 'webpack', 'watch', 'serve']);

2 changes: 1 addition & 1 deletion gulp/tasks/watch.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ gulp.task('watch', function() {
gulp.watch(config.index.src, ['index']);
gulp.watch(config.html.src, ['html']);

gulp.watch(['./node_modules/angular/angular.js', './node_modules/angular-route/angular-route.js']);
gulp.watch(['./node_modules/angular/angular.js', './node_modules/angular-route/angular-route.js', './node_modules/angular-ui-router']);
// Watchify will watch and recompile our JS, so no need to gulp.watch it
});

1 change: 1 addition & 0 deletions src/html/keyboard.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<div>Hello World</div>
61 changes: 33 additions & 28 deletions src/index.html
Original file line number Diff line number Diff line change
@@ -1,30 +1,35 @@

<html>
<!doctype html>
<html lang="en" ng-app="synthy">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="css/main.css">
<title>Websynth</title>
</head>
<body>
<link rel="stylesheet" href="css/main.css">
<div class="synth">
<div class="controls">
<button id="sine" class="osc">Sine</button>
<button id="noise" class="osc">Noise</button>
</div>
<div id="90" class="key white">
<div id="83" class="key black"></div>
</div>
<div id="88" class="key white">
<div id="68" class="key black"></div>
</div>
<div id="67" class="key white"></div>
<div id="86" class="key white">
<div id="71" class="key black"></div>
</div>
<div id="66" class="key white">
<div id="72" class="key black"></div>
</div>
<div id="78" class="key white">
<div id="74" class="key black"></div>
</div>
<div id="77" class="key white"></div>
</div>
<script src="index.js"></script>
<!-- NAV -->
<header class="header-container">
<h1 class="logo"></h1>
<nav class="primary-nav-wrap">

</nav>
</header>
<!-- SOME KIND OF NG-VIEW THING -->
<main ng-view>

</main>
<!-- FOOTER -->
<footer>
<ul>
<li><a href="#">TERMS OF USE</a></li>
<li><a href="#">PRIVACY POLICY</a></li>
<li><a href="#">CONTACT</a></li>
<li><a href="#">SUPPORT</a></li>
</ul>
</footer>
<!-- SCRIPT TAGS -->
<script src="js/packed.js"></script>
</body>
</html>
</html>
290 changes: 0 additions & 290 deletions src/index.js

This file was deleted.

3 changes: 3 additions & 0 deletions src/js/entry.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require("./synth-app.js");
require("./synth-ctrl.js");
require("./synth-service.js");
Loading

0 comments on commit b2801cb

Please sign in to comment.