mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-02 12:14:45 +00:00
fix(docs): add missing </div> tag to sourceEdit directive template
This commit is contained in:
parent
14b19ecf5e
commit
ed90f3b7ea
1 changed files with 2 additions and 1 deletions
|
|
@ -37,7 +37,8 @@ docsApp.directive.sourceEdit = function(getEmbeddedTemplate) {
|
||||||
'<ul class="dropdown-menu">' +
|
'<ul class="dropdown-menu">' +
|
||||||
' <li><a ng-click="plunkr($event)" href="">In Plunkr</a></li>' +
|
' <li><a ng-click="plunkr($event)" href="">In Plunkr</a></li>' +
|
||||||
' <li><a ng-click="fiddle($event)" href="">In JsFiddle</a></li>' +
|
' <li><a ng-click="fiddle($event)" href="">In JsFiddle</a></li>' +
|
||||||
'</ul>',
|
'</ul>' +
|
||||||
|
'</div>',
|
||||||
scope: true,
|
scope: true,
|
||||||
controller: function($scope, $attrs, openJsFiddle, openPlunkr) {
|
controller: function($scope, $attrs, openJsFiddle, openPlunkr) {
|
||||||
var sources = {
|
var sources = {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue