Fixing comments

This commit is contained in:
Christopher Giroir
2016-02-28 11:58:39 -08:00
parent 47688bfed5
commit 7e845962f4
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -45,6 +45,7 @@ html(ng-app='habitrpg', ng-controller='RootCtrl')
include ../shared/mixins
.container
block content
// Smart App Banner
script(type='text/javascript').
new SmartBanner({
title: 'Habitica: Gamify Your Tasks',
@@ -53,5 +54,5 @@ html(ng-app='habitrpg', ng-controller='RootCtrl')
store: {
ios: 'On the App Store',
android: 'In Google Play'
}//, force: 'ios' // Uncomment for platform emulation
}
});
+3 -2
View File
@@ -639,7 +639,7 @@ html(ng-app='habitrpg', ng-controller='RootCtrl')
$('[data-toggle="tooltip"]').tooltip()
$('[data-toggle="popover"]').popover()
})
// Hack fix for carousel (http://stackoverflow.com/a/22182184/362790)
// Smart App Banner
script(type='text/javascript').
new SmartBanner({
title: 'Habitica: Gamify Your Tasks',
@@ -648,8 +648,9 @@ html(ng-app='habitrpg', ng-controller='RootCtrl')
store: {
ios: 'On the App Store',
android: 'In Google Play'
}//, force: 'ios' // Uncomment for platform emulation
}
});
// Hack fix for carousel (http://stackoverflow.com/a/22182184/362790)
script.
angular.module('ui.bootstrap.carousel', ['ui.bootstrap.transition'])
.controller('CarouselController', ['$scope', '$timeout', '$transition', '$q', function ($scope, $timeout, $transition, $q) {