Skip to content

Commit

Permalink
Fixed the grunt script
Browse files Browse the repository at this point in the history
  • Loading branch information
bnhovde committed Nov 19, 2013
1 parent beb2c4e commit f01110b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 25 deletions.
2 changes: 1 addition & 1 deletion www/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module.exports = function (grunt) {
project: {
src: 'src',
app: 'app',
assets: '<%= project.app %>/assets',
assets: '<%= project.app %>/app',
css: [
'<%= project.src %>/scss/style.scss'
],
Expand Down
19 changes: 1 addition & 18 deletions www/src/js/scripts.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,4 @@
// Web SuperHeroes
// Dev Elephant
// All Page Scripts
// WebSuperHeroes.co.uk

$(document).ready(function(){

// Magic here!



// scripts for google analytics

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38234192-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
6 changes: 0 additions & 6 deletions www/src/js/vendor/jquery-1.10.2.min.js

This file was deleted.

9 changes: 9 additions & 0 deletions www/src/scss/modules/_vars.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
$font-family: 'Duru Sans';

$default-font-size-px: 15px;
$default-font-size-rem: 1.5rem;
$default-line-height: 1.5;

$primary-colour: #333;

$default-text-color: #8B8F90;

0 comments on commit f01110b

Please sign in to comment.