@@ -44,24 +44,6 @@ export function toDomEventNames(jsNames: string[]) {
4444 } ) ;
4545}
4646
47- export function tojQueryEventNames ( jsNames : string [ ] ) {
48- return jsNames . map ( ( v ) => {
49- return `alphaTab.${ v } ` ;
50- } ) ;
51- }
52-
53- export function tojQueryMethodNames ( jsNames : string [ ] ) {
54- return jsNames . map ( ( v ) => {
55- return `alphaTab('${ v } ')` ;
56- } ) ;
57- }
58-
59- export function tojQueryPropertyNames ( jsNames : string [ ] ) {
60- return jsNames . map ( ( v ) => {
61- return `alphaTab('${ v } ')` ;
62- } ) ;
63- }
64-
6547export function buildNames ( property : Page ) {
6648 const javaScriptOnly = property . prop ( "javaScriptOnly" , false ) ;
6749 const domWildcard = property . prop ( "domWildcard" , false ) ;
@@ -85,19 +67,6 @@ export function buildNames(property: Page) {
8567 jsNames . push ( jsNames [ 0 ] . split ( "." ) [ 1 ] ) ;
8668 }
8769
88- let jQueryNames = property . props ( "jQueryName" ) ;
89- if ( property . prop ( "jQuery" , true ) && jQueryNames . length === 0 ) {
90- if ( category . startsWith ( "Events" ) ) {
91- jQueryNames = tojQueryEventNames ( jsNames ) ;
92- } else if ( category . startsWith ( "Methods" ) ) {
93- jQueryNames = tojQueryMethodNames ( jsNames ) ;
94- } else if ( category . startsWith ( "Properties" ) ) {
95- jQueryNames = tojQueryPropertyNames ( jsNames ) ;
96- } else if ( property . prop ( "jQuery" , false ) ) {
97- jQueryNames = jsNames ;
98- }
99- }
100-
10170 let domNames = property . props ( "domName" ) ;
10271 if ( property . prop ( "dom" , true ) && domNames . length === 0 ) {
10372 if ( category . startsWith ( "Events" ) ) {
@@ -122,7 +91,6 @@ export function buildNames(property: Page) {
12291 javaScriptOnly,
12392 jsNames,
12493 csNames,
125- jQueryNames,
12694 domNames,
12795 androidNames
12896 } ;
0 commit comments