-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from brain11f/workingbranch
Workingbranch
- Loading branch information
Showing
28 changed files
with
383 additions
and
446 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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']); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<div>Hello World</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); |
Oops, something went wrong.