fix(ionTab): stop browser-tooltip from appearing due to title attr

Closes #804
This commit is contained in:
Andy Joslin
2014-03-15 18:57:10 -06:00
parent 95b6a83dad
commit aa30faf863
2 changed files with 12 additions and 1 deletions

View File

@@ -365,6 +365,9 @@ function($rootScope, $animate, $ionicBind, $compile, $ionicViewService) {
var tabsCtrl = ctrls[0],
tabCtrl = ctrls[1];
//Remove title attribute so browser-tooltip does not apear
$element[0].removeAttribute('title');
$scope.selectTab = function(e) {
e.preventDefault();
tabsCtrl.select(tabCtrl.$scope, true);