fix umbTooltip example

This commit is contained in:
Mads Rasmussen
2016-02-16 18:28:49 +01:00
committed by Rune Strand
parent 3b9d9ab8c4
commit 4f293a8be1

View File

@@ -9,7 +9,7 @@ Use this directive to render a tooltip.
<h3>Markup example</h3>
<pre>
<div ng-controller="Umbraco.Controller as vm">
<div ng-controller="My.Controller as vm">
<div
ng-mouseover="vm.mouseOver($event)"
@@ -35,8 +35,8 @@ Use this directive to render a tooltip.
var vm = this;
vm.tooltip = {
show: false;
event: null;
show: false,
event: null
};
vm.mouseOver = mouseOver;
@@ -44,21 +44,21 @@ Use this directive to render a tooltip.
function mouseOver($event) {
vm.tooltip = {
show: true;
event: $event;
show: true,
event: $event
};
}
function mouseLeave() {
vm.tooltip = {
show: false;
event: null;
show: false,
event: null
};
}
}
angular.module("umbraco").controller("Umbraco.Controller", Controller);
angular.module("umbraco").controller("My.Controller", Controller);
})();
</pre>