This file contains hidden or 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
| { | |
| "$schema" : "http://json-schema.org/draft-04/schema#", | |
| "type" : "array", | |
| "items" : { | |
| "definitions" : { | |
| "org.apache.camel.model.language.ConstantExpression" : { | |
| "anyOf" : [ { | |
| "type" : "string" | |
| }, { | |
| "type" : "object", |
This file contains hidden or 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
| #include <chrono> | |
| #include <memory> | |
| #include <string> | |
| #include <atomic> | |
| #include <thread> | |
| #include <iostream> | |
| #include <v8.h> | |
| int main() | |
| { |
This file contains hidden or 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
| function getContent(state) { | |
| var req = new XMLHttpRequest(); | |
| req.open('GET', state.href, false); | |
| req.send(null); | |
| if (req.status == 200) { | |
| var container = document.getElementById(state.container); | |
| if (container) { | |
| container.innerHTML = req.responseText; |
This file contains hidden or 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
| <div class="row page-region-content"> | |
| <ul class="accordion dark" data-role="accordion"> | |
| <li> | |
| <a data-action="accordion-toggle" href="#">Users</a> | |
| <div data-role="accordion-content"> | |
| <h3>User stuff</h3> | |
| <p>Red alert</p> | |
| </div> | |
| </li> | |
| <li> |
This file contains hidden or 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
| /** | |
| * jQuery plugin for input elements for Metro UI CSS framework | |
| */ | |
| (function($) { | |
| var pluginName = 'Accordion', | |
| accordionContainer = '[data-role="accordion"]', | |
| accordionToggle = '[data-action="accordion-toggle"]', | |
| accordionContent = '[data-role="accordion-content"]', | |
| paramKeys = []; |