X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8453812fac25bae327b8fa52c5a920b1d921e8be..42c20b25e1325124b88e3b9b285544dc41122b56:/apps/workbench/app/assets/javascripts/angular_shim.js diff --git a/apps/workbench/app/assets/javascripts/angular_shim.js b/apps/workbench/app/assets/javascripts/angular_shim.js index a5366e3ccb..5da67285b1 100644 --- a/apps/workbench/app/assets/javascripts/angular_shim.js +++ b/apps/workbench/app/assets/javascripts/angular_shim.js @@ -1,12 +1,17 @@ +// Copyright (C) The Arvados Authors. All rights reserved. +// +// SPDX-License-Identifier: AGPL-3.0 + // Compile any new HTML content that was loaded via jQuery.ajax(). -// Currently this only works for tabs because they emit an +// Currently this only works for tabs, and only because they emit an // arv:pane:loaded event after updating the DOM. $(document).on('arv:pane:loaded', function(event, $updatedElement) { - if ($updatedElement) { - angular.element($updatedElement).injector().invoke(function($compile) { - var scope = angular.element($updatedElement).scope(); - $compile($updatedElement)(scope); - }); + if (angular && $updatedElement && angular.element($updatedElement).injector()) { + angular.element($updatedElement).injector().invoke([ + '$compile', function($compile) { + var scope = angular.element($updatedElement).scope(); + $compile($updatedElement)(scope); + }]); } });