私は角張った材料を使い慣れていないので、$ md-Dialogサービスを動作させようとしています。私は角度材料のデモを使用していますが、どういうわけか私はそれを正しく得ることができません。これを動作させるために追加する必要があるもの/何が間違っているか。mdダイアログが動作しない
デモ https://material.angularjs.org/latest/api/service/ $ mdDialog
マイHTML
<div ng-controller="myController">
<md-button ng-click="showAlert()" class="md-raised md-warn">Custom Dialog</md-button>
</div>
私のJS
app.controller('myController', ['$scope', '$mdToast', '$animate', '$mdDialog', '$mdMedia', function ($scope, $mdToast, $mdDialog,$animate, $mdMedia) {
var alert;
$scope.showAlert = showAlert;
// Internal method
function showAlert() {
alert = $mdDialog.alert({
title: 'Attention',
textContent: 'This is an example of how easy dialogs can be!',
ok: 'Close'
});
$mdDialog
.show(alert)
.finally(function() {
alert = undefined;
});
}
}