Skip to content

Commit c15a50c

Browse files
committed
added styles and scroll
1 parent 4d4f0b5 commit c15a50c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

public/controllers/dashboard-controller.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ notes.controller('dashboardCtrl', function dashboardCtrl($scope, $window, $http)
3434
var html = '';
3535
html += '<div class="col-md-3 currentNote" id= "'+data._id+'" ng-repeat="note in notes">';
3636
html += '<div class="row">';
37-
html += '<a class="col-md-2" id="editNotedeleteNote" ng-click="getNoteById('+data._id+')"><i class="fa fa-pencil"></i></a>';
37+
html += '<a class="col-md-offset-8 col-md-2" id="editNote" ng-click="getNoteById('+data._id+')"><i class="fa fa-pencil"></i></a>';
3838
html += '<a class="col-md-2" id="deleteNote" ng-click="deleteNote('+data._id+')"><i class="fa fa-trash-o" aria-hidden="true"></i></a>';
3939
html += '</div>';
4040
html += '<h1>'+$scope.noteHeading+'</h1>';

public/views/dashboard.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ <h2 style="color: #fff">Welcome <span ng-bind="name.firstname"></span>!</h2>
3232
<div class="panel-body" id="notes">
3333
<div class="col-md-3 currentNote" id={{note._id}} ng-repeat="note in notes">
3434
<div class="row">
35-
<a class="col-md-offset-8 col-md-2" id="editNote" ng-click="getNoteById(note._id)" data-target="#pModal"><i class="fa fa-pencil"></i></a>
35+
<a class="col-md-offset-8 col-md-2" id="editNote" ng-click="getNoteById(note._id)" data-target="#myModal"><i class="fa fa-pencil"></i></a>
3636
<a class="col-md-2" id="deleteNote" ng-click="deleteNote(note._id)"><i class="fa fa-trash-o" aria-hidden="true"></i></a>
3737
</div>
3838
<h1 ng-bind="note.noteTitle"></h1>

0 commit comments

Comments
 (0)