Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#include "atomic.h" | |
// Fillers to make layering more clear | |
#define _______ KC_TRNS | |
#define ___T___ KC_TRNS | |
#define XXXXXXX KC_NO | |
// Layer shorthand | |
#define _QW 0 | |
#define _CM 1 |
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
define(function () { | |
var $ = require('jquery'); | |
var http = require('plugins/http'); // Durandal plugin | |
var instance = null; | |
var ko = require('knockout'); | |
function Meetings(maxAge) { | |
if (instance !== null) { | |
throw new Error("Cannot instantiate more than one Meetings, use Meetings.getInstance()"); | |
} |