Merge branch 'master' of github.com:whitef0x0/medforms

This commit is contained in:
David Baldwynn 2015-07-13 18:14:21 -07:00
commit 313ff0a639
2 changed files with 13 additions and 4 deletions

View file

@ -53,7 +53,7 @@
<![endif]-->
</head>
<body>
<body ng-cloak ng-app="medform">
<header data-ng-include="'/modules/core/views/header.client.view.html'"></header>
<section class="content">
<!-- <section class="container"> -->
@ -75,7 +75,7 @@
<!--Application JavaScript Files-->
{% for jsFile in jsFiles %}
<!--<script type="text/javascript" src="{{jsFile}}"></script>-->
<script type="text/javascript" src="{{jsFile}}"></script>
{% endfor %}
<!-- end Application CSS dependencies-->
@ -84,6 +84,17 @@
<script type="text/javascript" src="http://{{request.hostname}}:35729/livereload.js"></script>
{% endif %}
<script>
Raven.config('http://db01e03015ce48e2b68240ea8254b17c@sentry.polydaic.com/1', {
// Raven settings
})
.setUser({
"id": "SERVER_RENDERED_ID",
"email": "SERVER_RENDERED_EMAIL"
})
.install()
</script>
<!-- [if lt IE 9]>
<section class="browsehappy jumbotron hide">
<h1>Hello there!</h1>

View file

@ -1,7 +1,5 @@
'use strict';
console.log('hi');
//Start by defining the main module and adding the module dependencies
angular.module(ApplicationConfiguration.applicationModuleName, ApplicationConfiguration.applicationModuleVendorDependencies);