docs(moda): updaing the docs to reflect the proper modal.hidden event. Closes #1493

This commit is contained in:
17NuF432QCV2vF4fdqYPYMdCuK9jHVDSNG
2014-05-24 14:01:25 -04:00
committed by Perry Govier
parent 19897855ca
commit ed797eb281

View File

@@ -1,5 +1,5 @@
var ITEM_TPL_CONTENT_ANCHOR =
'<a class="item-content" ng-href="{{$href()}}"></a>';
'<a class="item-content" ng-href="{{$href()}}" target="{{$target}}></a>';
var ITEM_TPL_CONTENT =
'<div class="item-content"></div>';
/**
@@ -58,6 +58,7 @@ function($animate, $compile) {
$scope.$href = function() {
return $attrs.href || $attrs.ngHref;
};
$scope.$target = $attrs.href || '_self';
};
}
};