forked from LordOfTheStack/UI5-WCAG-HELPER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.js
32 lines (28 loc) · 1.04 KB
/
library.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
This library has been originally developed by Phillip & Bradley Smith, Smith Brothers Consulting Pty Ltd AUSTRALIA
It is provided to the wider community as open-source software, community contribution is welcome and appreciated.
Hopefully someday WCAG compliance will come built-in to SAPUI5, but until then, please feel welcome to use this patch library
14/01/2020 Phillip Smith
*/
sap.ui.define([], function() {
"use strict";
jQuery.sap.declare("community.wcagHelper.wcagHelper");
/**
* @alias community.wcagHelper
*/
sap.ui.getCore().initLibrary({
name: "community.wcagHelper",
version: "1.0.0",
dependencies: ["sap.ui.core"],
types: [],
interfaces: [],
controls: [],
elements: [],
noLibraryCSS: true
});
jQuery.sap.require("community.wcagHelper.UIMonitor");
community.wcagHelper.UIMonitor.init();
return community.wcagHelper;
}, false);