angular-loading-overlay-2
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -84,3 +84,3 @@ /******/ (function(modules) { // webpackBootstrap | ||
var templateUrl = $attributes.bsLoadingOverlayTemplateUrl || globalConfig.templateUrl; | ||
var template = $attributes.bsLoadingOverlayTemplateUrl || globalConfig.templateUrl; | ||
var template = $attributes.bsLoadingOverlayTemplate || globalConfig.template; | ||
var templateOptions = scope.$eval($attributes.bsLoadingOverlayTemplateOptions) || globalConfig.templateOptions; | ||
@@ -87,0 +87,0 @@ var overlayElement = null; |
interface IBsLoadingOverlayOptions { | ||
referenceId?: string; | ||
templateUrl?: string; | ||
template?: string; | ||
templateOptions?: any; | ||
@@ -5,0 +6,0 @@ activeClass?: string; |
{ | ||
"name": "angular-loading-overlay-2", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Service and directive to manipulate overlays on async operations.", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -12,2 +12,3 @@ import * as angular from 'angular'; | ||
bsLoadingOverlayTemplateUrl: string; | ||
bsLoadingOverlayTemplate: string; | ||
bsLoadingOverlayTemplateOptions: any; | ||
@@ -44,3 +45,3 @@ } | ||
const templateUrl = $attributes.bsLoadingOverlayTemplateUrl || globalConfig.templateUrl; | ||
const template = $attributes.bsLoadingOverlayTemplateUrl || globalConfig.templateUrl; | ||
const template = $attributes.bsLoadingOverlayTemplate || globalConfig.template; | ||
const templateOptions = scope.$eval($attributes.bsLoadingOverlayTemplateOptions) || globalConfig.templateOptions; | ||
@@ -47,0 +48,0 @@ |
interface IBsLoadingOverlayOptions { | ||
referenceId?: string; | ||
templateUrl?: string; | ||
template?: string; | ||
templateOptions?: any; | ||
@@ -5,0 +6,0 @@ activeClass?: string; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
201448
1614