Skip to content

Commit

Permalink
demo(modal): Use 'h3' tag in template instead of 'h1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozlowski-opensource committed May 13, 2013
1 parent 06081e8 commit 32d2984
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dialog/docs/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ function DialogDemoCtrl($scope, $dialog){

// Inlined template for demo
var t = '<div class="modal-header">'+
'<h1>This is the title</h1>'+
'<h3>This is the title</h3>'+
'</div>'+
'<div class="modal-body">'+
'<p>Enter a value to pass to <code>close</code> as the result: <input ng-model="result" /></p>'+
Expand Down
2 changes: 1 addition & 1 deletion src/modal/docs/demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<button class="btn" ng-click="open()">Open me!</button>
<div modal="shouldBeOpen" close="close()" options="opts">
<div class="modal-header">
<h4>I'm a modal!</h4>
<h3>I'm a modal!</h3>
</div>
<div class="modal-body">
<ul>
Expand Down

0 comments on commit 32d2984

Please sign in to comment.