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
'use strict'; | |
const electron = require('electron'); | |
const nodeMuse = require("node-muse"); | |
const Muse = nodeMuse.connect().Muse; | |
const OSC = nodeMuse.OSC; | |
const app = electron.app; // Module to control application life. | |
const BrowserWindow = electron.BrowserWindow; // Module to create native browser window. | |
// Report crashes to our server. |
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
class VirtualRepeatModel { | |
PAGE_SIZE: number = 20; | |
totalItems: number = 0; | |
totalPages: number; | |
loadedItems = {}; | |
currentIndex: number; | |
extraParams = {}; | |
constructor(public api: restangular.IElement, public initialPage?: number) { |
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
package controllers; | |
import play.*; | |
import play.mvc.*; | |
public class Application extends Controller { | |
/* | |
* Define any extra CORS headers needed for option requests (see http://enable-cors.org/server.html for more info) | |
*/ |