mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-23 10:26:23 +00:00
12 lines
221 B
JavaScript
12 lines
221 B
JavaScript
|
|
angular.module('buttonsDemo1', ['ngMaterial'])
|
|
|
|
.controller('AppCtrl', function($scope) {
|
|
$scope.title1 = 'Button';
|
|
$scope.title4 = 'Warn';
|
|
$scope.isDisabled = true;
|
|
|
|
$scope.googleUrl = 'http://google.com';
|
|
|
|
});
|