Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/main/resources/resource/WebGui/app/service/js/EmailGui.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
angular.module('mrlapp.service.EmailGui', []).controller('EmailGuiCtrl', ['$scope', 'mrl', function($scope, mrl) {
console.info('EmailGuiCtrl')
var _self = this
var msg = this.msg

// GOOD TEMPLATE TO FOLLOW
this.updateState = function(service) {
$scope.service = service
}

msg.subscribe(this)
}
])
13 changes: 13 additions & 0 deletions src/main/resources/resource/WebGui/app/service/js/MailGui.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
angular.module('mrlapp.service.MailGui', []).controller('MailGuiCtrl', ['$scope', 'mrl', function($scope, mrl) {
console.info('MailGuiCtrl')
var _self = this
var msg = this.msg

// GOOD TEMPLATE TO FOLLOW
this.updateState = function(service) {
$scope.service = service
}

msg.subscribe(this)
}
])
12 changes: 12 additions & 0 deletions src/main/resources/resource/WebGui/app/service/views/EmailGui.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<table>
<tr>
<td>
<label> </label>
</td>
</tr>
<tr>
<td>
<label>WORK IN PROGRESS</label>
</td>
</tr>
</table>
12 changes: 12 additions & 0 deletions src/main/resources/resource/WebGui/app/service/views/MailGui.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<table>
<tr>
<td>
<label> </label>
</td>
</tr>
<tr>
<td>
<label>WORK IN PROGRESS</label>
</td>
</tr>
</table>