mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-26 03:36:23 +00:00
35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
angular.module('dividerDemo1', ['ngMaterial'])
|
|
.controller('AppCtrl', function($scope) {
|
|
$scope.messages = [{
|
|
face: '/img/list/60.jpeg',
|
|
what: 'Brunch this weekend?',
|
|
who: 'Min Li Chan',
|
|
when: '3:08PM',
|
|
notes: " I'll be in your neighborhood doing errands"
|
|
}, {
|
|
face: '/img/list/60.jpeg',
|
|
what: 'Brunch this weekend?',
|
|
who: 'Min Li Chan',
|
|
when: '3:08PM',
|
|
notes: " I'll be in your neighborhood doing errands"
|
|
}, {
|
|
face: '/img/list/60.jpeg',
|
|
what: 'Brunch this weekend?',
|
|
who: 'Min Li Chan',
|
|
when: '3:08PM',
|
|
notes: " I'll be in your neighborhood doing errands"
|
|
}, {
|
|
face: '/img/list/60.jpeg',
|
|
what: 'Brunch this weekend?',
|
|
who: 'Min Li Chan',
|
|
when: '3:08PM',
|
|
notes: " I'll be in your neighborhood doing errands"
|
|
}, {
|
|
face: '/img/list/60.jpeg',
|
|
what: 'Brunch this weekend?',
|
|
who: 'Min Li Chan',
|
|
when: '3:08PM',
|
|
notes: " I'll be in your neighborhood doing errands"
|
|
}];
|
|
});
|