Removed debugging messages

This commit is contained in:
Max Lynch
2013-09-22 13:52:29 -05:00
parent 4c19705806
commit c6d0dd4457
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<html ng-app="sideMenuTest">
<head>
<meta charset="utf-8">
<title>Nav Bars</title>
<title>Side Menus</title>
<!-- Sets initial viewport load and disables zooming -->
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
@ -26,6 +26,11 @@
</div>
<menu side="left">
<h2>Left</h2>
<ul class="list">
<a href="#" class="list-item" ng-repeat="item in list">
{{item.text}}
</a>
</ul>
</menu>
<menu side="right">
<h2>Right</h2>

View File

@ -83,7 +83,6 @@ angular.module('ionic.ui', [])
}, $element[0]);
$scope.$watch('contentTranslateX', function(value) {
console.log('Translate X changing', value);
$element[0].style.webkitTransform = 'translate3d(' + value + 'px, 0, 0)';
});