I have setup angular with mamp using the CDN links.
everything has been working fine and I have been able to use flex etc.. however, I am trying to use the bottomsheet demo found here:
https://material.angularjs.org/#/demo/material.components.bottomSheet
I have tried building it myself as well as taking the code directly from the demo and when I run it, none of the buttons are showing up, theyre just displayed as text and I am seeing {{alert}}
Attached is a screenshot of the results imgur.com/9t5I5SY
<div ng-controller="BottomSheetExample">
<p style="padding-left: 20px;">
Bottom sheet can be dismissed with the service or a swipe down.
</p>
<div class="bottom-sheet-demo inset" layout="column" layout-sm="row" layout-align="center">
<md-button class="md-primary" ng-click="showListBottomSheet($event)">
Show as List
</md-button>
<div style="width:50px;"></div>
<md-button class="md-primary" ng-click="showGridBottomSheet($event)">
Show as Grid
</md-button>
</div>
<br/>
<b layout="row" layout-align="center center" layout-margin>
{{alert}}
</b>
</div>
If ANYONE can tell me why this isn't working I am forever in your debt.
Thanks!