Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mardo committed Nov 15, 2015
1 parent 86dbca4 commit 2934b22
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 7 deletions.
1 change: 1 addition & 0 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ accounts-google
accounts-twitter
ian:accounts-ui-bootstrap-3
twbs:bootstrap
fortawesome:fontawesome
1 change: 1 addition & 0 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
fortawesome:[email protected]
[email protected]
[email protected]
[email protected]
Expand Down
2 changes: 1 addition & 1 deletion client/lib/angular-init.ls
Original file line number Diff line number Diff line change
@@ -1 +1 @@
angular.module 'angularMeteor', ['angular-meteor', 'ui.router']
angular.module 'angularMeteor', ['angular-meteor', 'ui.router', 'ui.bootstrap']
2 changes: 1 addition & 1 deletion client/ls-compiled/lib/angular-init.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion client/ls-compiled/views/dashboard/dashboard.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
13 changes: 10 additions & 3 deletions client/views/dashboard/dashboard.ls
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
angular.module('angularMeteor').controller 'DashboardController', <[ $scope $meteor ]> ++ ($scope, $meteor) ->



$scope.state = {
currentDate: new Date()
}

$scope.open = ($event) ->
$scope.state.opened = true;




2 changes: 1 addition & 1 deletion client/views/dashboard/dashboard.ng.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<h1>My Dashboard</h1>
<h1>My Dashboard</h1>
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MeteorAngularProject</title>

<link href="/bower_components/angular-bootstrap/ui-bootstrap-csp.css" rel="stylesheet" type="text/css">

<script src="/bower_components/angular-bootstrap/ui-bootstrap.min.js" type="text/javascript" charset="utf-8"></script>
<script src="/bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js" type="text/javascript" charset="utf-8"></script>
</head>


Expand Down

0 comments on commit 2934b22

Please sign in to comment.