mirror of
https://github.com/xevidos/codiad.git
synced 2024-11-14 07:41:14 +01:00
28 lines
No EOL
486 B
Text
Executable file
28 lines
No EOL
486 B
Text
Executable file
s:477:"/*
|
|
|
|
Created: 2018-07-10
|
|
Modified: N/A
|
|
Purpose: Why did we name this Qualify ... Designate is better
|
|
|
|
*/
|
|
|
|
/*global L*/
|
|
/*global m*/
|
|
/*global v*/
|
|
/*global c*/
|
|
|
|
c.designateFunction = function(eventObject){
|
|
c.updateMetaEvents(eventObject)
|
|
let functionQualifiers = {
|
|
setToggleTestButton: [m.source === v.testButton, m.type === `click`],
|
|
/*
|
|
setXXY: [],
|
|
setXXZ: [],
|
|
setXYX: [],
|
|
setXYY: [],
|
|
*/
|
|
}
|
|
L.runQualifiedFunctions(functionQualifiers, m, v, c)
|
|
}
|
|
///////////////
|
|
"; |