-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from ni/nxg5
LabVIEW NXG 5.0 changes
- Loading branch information
Showing
307 changed files
with
248,262 additions
and
23,468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ apis | |
enum | ||
enums | ||
CSV | ||
DCO | ||
YML | ||
timestamp | ||
timestamps | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
Call3rdPartyWebService/Builds/WebApp_Web Server/ni-webvi-resource-v0/BrowserDetection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//********************************************************** | ||
// Detect some outdated browsers and display a message to the user | ||
// National Instruments Copyright 2020 | ||
//********************************************************** | ||
// This file relies on <script nomodule> to avoid running on modern browsers | ||
// Note: Lack of modules means the browser is unsupported by WebVIs however modules support does not mean WebVIs are fully supported | ||
// Note: strict mode, let/const, and strict equality operators avoided to support older browsers | ||
(function () { | ||
// eslint-disable-next-line no-var | ||
var windowLoaded = function (callback) { | ||
if (window.addEventListener) { | ||
window.addEventListener('load', callback); | ||
} else if (window.attachEvent) { | ||
// Note: the on- prefix intended for legacy attachEvent api | ||
window.attachEvent('onload', callback); | ||
} else { | ||
// Generally avoid overwriting onload, but exception made for very old browsers to show banner | ||
window.onload = callback; | ||
} | ||
}; | ||
windowLoaded(function () { | ||
// eslint-disable-next-line no-var | ||
var outdatedBrowserMessage = document.getElementById('ni-outdated-browser-message'); | ||
if (outdatedBrowserMessage != null) { | ||
outdatedBrowserMessage.style.display = 'block'; | ||
} | ||
}); | ||
}()); |
21,585 changes: 21,584 additions & 1 deletion
21,585
Call3rdPartyWebService/Builds/WebApp_Web Server/ni-webvi-resource-v0/DeployedRun.min.js
Large diffs are not rendered by default.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
...3rdPartyWebService/Builds/WebApp_Web Server/ni-webvi-resource-v0/ResourceLoadDetection.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
//********************************************************** | ||
// Detect if the main bundle failed to load | ||
// National Instruments Copyright 2020 | ||
//********************************************************** | ||
(function () { | ||
'use strict'; | ||
if (window.NationalInstrumentsMainModuleLoaded !== true) { | ||
const resourceLoadBanner = document.getElementById('ni-failed-to-load-vireo-source'); | ||
if (resourceLoadBanner !== null) { | ||
resourceLoadBanner.style.display = 'block'; | ||
} | ||
} | ||
}()); |
Oops, something went wrong.