Skip to content

Commit 32d2984

Browse files
demo(modal): Use 'h3' tag in template instead of 'h1'
1 parent 06081e8 commit 32d2984

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dialog/docs/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ function DialogDemoCtrl($scope, $dialog){
22

33
// Inlined template for demo
44
var t = '<div class="modal-header">'+
5-
'<h1>This is the title</h1>'+
5+
'<h3>This is the title</h3>'+
66
'</div>'+
77
'<div class="modal-body">'+
88
'<p>Enter a value to pass to <code>close</code> as the result: <input ng-model="result" /></p>'+

src/modal/docs/demo.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<button class="btn" ng-click="open()">Open me!</button>
33
<div modal="shouldBeOpen" close="close()" options="opts">
44
<div class="modal-header">
5-
<h4>I'm a modal!</h4>
5+
<h3>I'm a modal!</h3>
66
</div>
77
<div class="modal-body">
88
<ul>

0 commit comments

Comments
 (0)