mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-23 02:16:23 +00:00
17 lines
467 B
JavaScript
17 lines
467 B
JavaScript
angular.module('inputBasicDemo', ['ngMaterial'])
|
|
|
|
.controller('DemoCtrl', function($scope) {
|
|
$scope.user = {
|
|
title: 'Developer',
|
|
email: 'ipsum@lorem.com',
|
|
firstName: '',
|
|
lastName: '' ,
|
|
company: 'Google' ,
|
|
address: '1600 Amphitheatre Pkwy' ,
|
|
city: 'Mountain View' ,
|
|
state: 'CA' ,
|
|
biography: 'Loves kittens, snowboarding, and can type at 130 WPM. And rumor has it she bouldered up Castle Craig!',
|
|
postalCode : '94043'
|
|
};
|
|
});
|