Add glide.yaml and vendor deps
This commit is contained in:
parent
db918f12ad
commit
5b3d5e81bd
18880 changed files with 5166045 additions and 1 deletions
29
vendor/k8s.io/kubernetes/examples/guestbook/php-redis/controllers.js
generated
vendored
Normal file
29
vendor/k8s.io/kubernetes/examples/guestbook/php-redis/controllers.js
generated
vendored
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
var redisApp = angular.module('redis', ['ui.bootstrap']);
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
function RedisController() {}
|
||||
|
||||
RedisController.prototype.onRedis = function() {
|
||||
this.scope_.messages.push(this.scope_.msg);
|
||||
this.scope_.msg = "";
|
||||
var value = this.scope_.messages.join();
|
||||
this.http_.get("guestbook.php?cmd=set&key=messages&value=" + value)
|
||||
.success(angular.bind(this, function(data) {
|
||||
this.scope_.redisResponse = "Updated.";
|
||||
}));
|
||||
};
|
||||
|
||||
redisApp.controller('RedisCtrl', function ($scope, $http, $location) {
|
||||
$scope.controller = new RedisController();
|
||||
$scope.controller.scope_ = $scope;
|
||||
$scope.controller.location_ = $location;
|
||||
$scope.controller.http_ = $http;
|
||||
|
||||
$scope.controller.http_.get("guestbook.php?cmd=get&key=messages")
|
||||
.success(function(data) {
|
||||
console.log(data);
|
||||
$scope.messages = data.data.split(",");
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue