Error Correction

This commit is contained in:
Eole 2016-05-04 20:03:15 +02:00
parent 4b978d4584
commit d24d569f1c
2 changed files with 215 additions and 221 deletions

View file

@ -31,11 +31,6 @@ mainApp.controller('homeCtrl', ['$scope', 'Compute', '$rootScope', 'Loading', 'I
tryToRetrieveData();
});
$scope.raiseShowMachineCreationEvent = function () {
$rootScope.$broadcast("showMachineCreationEvent", Compute.getData().axioms);
};
// Function to call from view to display the details of a machine
$scope.raiseShowMachineDetailsEvent = function (id) {
@ -200,9 +195,7 @@ mainApp.controller('homeCtrl', ['$scope', 'Compute', '$rootScope', 'Loading', 'I
function makeElement(vm) {
var label = vm[0];
var maxLineLength = _.max(label.split('\n'), function (l) {
return l.length;
}).length;
var maxLineLength = _.max(label.split('\n'), function(l) { return l.length; }).length;
// Compute width/height of the rectangle based on the number
// of lines in the label and the letter size. 0.6 * letterSize is

View file

@ -1,5 +1,6 @@
{
"require": {
"php-opencloud/openstack": "dev-master"
"php-opencloud/openstack": "dev-master",
"phpdocumentor/phpdocumentor": "2.*"
}
}