GUACAMOLE-526: Update webapp to angular 1.6.9.

This commit is contained in:
James Muehlner
2018-04-25 22:25:02 -07:00
parent 03281667b4
commit b3eeb36b87
36 changed files with 301 additions and 159 deletions

View File

@@ -88,7 +88,9 @@ angular.module('osk').directive('guacOsk', [function guacOsk() {
})
// Build OSK with retrieved layout
.success(function layoutRetrieved(layout) {
.then(function layoutRetrieved(request) {
var layout = request.data;
// Abort if the layout changed while we were waiting for a response
if ($scope.layout !== url)