angular-cn/public/resources/js/site.js

51 lines
1.5 KiB
JavaScript
Raw Normal View History

2015-03-01 09:42:31 -05:00
var angularIO = angular.module('angularIOApp', ['ngMaterial'])
2015-02-24 09:38:30 -05:00
.config(function($mdThemingProvider) {
$mdThemingProvider.theme('default')
.primaryPalette('blue', {
'default': '700', // by default use shade 400 from the pink palette for primary intentions
'hue-1': '100', // use shade 100 for the <code>md-hue-1</code> class
'hue-2': '600', // use shade 600 for the <code>md-hue-2</code> class
'hue-3': 'A100' // use shade A100 for the <code>md-hue-3</code> class
})
// If you specify less than all of the keys, it will inherit from the
// default shades
.accentPalette('purple', {
'default': '200' // use shade 200 for default, and keep all other shades the same
});
});
2015-02-19 12:51:07 -05:00
2015-03-02 02:48:31 -05:00
angularIO.controller('AppCtrl', ['$scope', '$mdSidenav', '$mdDialog', function($scope, $mdSidenav, $mdDialog){
2015-02-19 12:51:07 -05:00
$scope.toggleSidenav = function(menuId) {
$mdSidenav(menuId).toggle();
};
2015-03-01 09:42:31 -05:00
$scope.showVersionMenu = function() {
2015-03-02 10:15:03 -05:00
$mdDialog.show(
$mdDialog.alert()
.title('Choose a Version')
.content('libraries')
.ariaLabel('Angular Version Menu')
.ok('Done')
.targetEvent(event)
);
2015-03-01 09:42:31 -05:00
};
2015-03-01 23:00:19 -05:00
2015-03-02 02:48:31 -05:00
$scope.showBio = function (event) {
var bio = angular.element(event.currentTarget).text();
console.log(bio);
$mdDialog.show(
$mdDialog.alert()
2015-03-02 02:49:34 -05:00
.title('Full Bio')
2015-03-02 02:48:31 -05:00
.content(bio)
2015-03-02 10:15:03 -05:00
.ariaLabel('Biography')
.ok('Close Bio')
2015-03-02 02:48:31 -05:00
.targetEvent(event)
);
};
2015-03-01 23:00:19 -05:00
prettyPrint();
2015-02-24 09:38:30 -05:00
}]);