-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch views between 1.2 and 2.0 on a view by view basis. 2.0 support…
… still WIP - defaulting to 1.2 for now
- Loading branch information
Showing
21 changed files
with
321 additions
and
209 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,21 @@ | ||
export const FDC3_TOPICS = { | ||
START: 'FDC3:start', | ||
INITIATE: 'FDC3:initiate', | ||
DROP_CONTEXT_LISTENER: 'FDC3:dropContextListener', | ||
ADD_CONTEXT_LISTENER: 'FDC3:addContextListener', | ||
DROP_INTENT_LISTENER: 'FDC3:dropIntentListener', | ||
ADD_INTENT_LISTENER: 'FDC3:addIntentListener', | ||
BROADCAST: 'FDC3:broadcast', | ||
OPEN: 'FDC3:open', | ||
CONTEXT: 'FDC3:context', | ||
GET_CURRENT_CONTEXT: 'FDC3:getCurrentContext', | ||
GET_OR_CREATE_CHANNEL: 'FDC3:getOrCreateChannel', | ||
GET_SYSTEM_CHANNELS: 'FDC3:getSystemChannels', | ||
LEAVE_CURRENT_CHANNEL: 'FDC3:leaveCurrentChannel', | ||
GET_CURRENT_CHANNEL: 'FDC3:getCurrentChannel', | ||
JOIN_CHANNEL: 'FDC3:joinChannel', | ||
INTENT: 'FDC3:intent', | ||
FIND_INTENT: 'FDC3:findIntent', | ||
FIND_INTENTS_BY_CONTEXT: 'FDC3:findIntentsByContext', | ||
RAISE_INTENT: 'FDC3:raiseIntent', | ||
RAISE_INTENT_FOR_CONTEXT: 'FDC3:raiseIntentForContext', | ||
export const FDC3_1_2_TOPICS = { | ||
DROP_CONTEXT_LISTENER: 'FDC3_1.2:dropContextListener', | ||
ADD_CONTEXT_LISTENER: 'FDC3_1.2:addContextListener', | ||
DROP_INTENT_LISTENER: 'FDC3_1.2:dropIntentListener', | ||
ADD_INTENT_LISTENER: 'FDC3_1.2:addIntentListener', | ||
BROADCAST: 'FDC3_1.2:broadcast', | ||
OPEN: 'FDC3_1.2:open', | ||
CONTEXT: 'FDC3_1.2:context', | ||
GET_CURRENT_CONTEXT: 'FDC3_1.2:getCurrentContext', | ||
GET_OR_CREATE_CHANNEL: 'FDC3_1.2:getOrCreateChannel', | ||
GET_SYSTEM_CHANNELS: 'FDC3_1.2:getSystemChannels', | ||
LEAVE_CURRENT_CHANNEL: 'FDC3_1.2:leaveCurrentChannel', | ||
GET_CURRENT_CHANNEL: 'FDC3_1.2:getCurrentChannel', | ||
JOIN_CHANNEL: 'FDC3_1.2:joinChannel', | ||
INTENT: 'FDC3_1.2:intent', | ||
FIND_INTENT: 'FDC3_1.2:findIntent', | ||
FIND_INTENTS_BY_CONTEXT: 'FDC3_1.2:findIntentsByContext', | ||
RAISE_INTENT: 'FDC3_1.2:raiseIntent', | ||
RAISE_INTENT_FOR_CONTEXT: 'FDC3_1.2:raiseIntentForContext', | ||
RESOLVE_INTENT: 'FDC3_1.2:resolveIntent', | ||
}; |
Oops, something went wrong.