bigbluebutton-Github/labs/demos/public/js/app.js

20 lines
445 B
JavaScript

var myModule = angular.module('landingPage', []);
myModule.controller('MainCtrl', function($scope, $http, $location, $window) {
$scope.postUsername = function() {
var account = {
"name": $scope.username,
"password": 'oOoOoO'
};
jQuery.getJSON("config.json", function (json) {
$http.post('/login', account).success(function(res) {
//alert(res.success.url);
$window.location.href = res.success.url;
});
});
}
});