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
'use strict'; | |
import React from 'react'; | |
import shell from 'shell'; | |
import {Table, Column} from 'fixed-data-table'; | |
import update from 'react-addons-update'; | |
import mui from 'material-ui'; | |
import ipc from 'ipc'; | |
class EditableTextArea extends React.Component{ | |
constructor(props){ | |
super(props); |
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
'use strict'; | |
import React from 'react'; | |
import shell from 'shell'; | |
import {Table, Column} from 'fixed-data-table'; | |
import update from 'react-addons-update'; | |
import mui from 'material-ui'; | |
import ipc from 'ipc'; | |
export class LanguageTable extends React.Component { | |
constructor(props) { |
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
'use strict'; | |
import React from 'react'; | |
import { Router, Route, Link } from 'react-router' | |
import shell from 'shell'; | |
import fs from 'fs'; | |
import ipc from 'ipc'; | |
export class Main extends React.Component { | |
state = { | |
message: 'Hello, Electron' |
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
[ | |
{ | |
"extension": ".3dm", | |
"mimeType": "x-world/x-3dmf", | |
"icon": "mime-icon-dm" | |
}, | |
{ | |
"extension": ".3dmf", | |
"mimeType": "x-world/x-3dmf", | |
"icon": "mime-icon-dm" |
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
{ | |
"compliance": { | |
"de": { | |
"series": [ | |
{ | |
"date": "20.03.2015", | |
"headline": "Compliance: Was ist erlaubt?", | |
"name": "Serie: Regelkonformes Verhalten am Arbeitsplatz", | |
"articles":[ | |
[ |
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
{ | |
"de": [ | |
{ | |
"title": "Compliance โ Zuwendungen im Verkehr mit Dritten", | |
"file": "Flyer_Compliance_De.pdf" | |
}, | |
{ | |
"title": "Produkt- haftung", | |
"file": "Produkthaftung_de_app-1.pdf" | |
}, |
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
/** | |
* ================== angular-ios9-uiwebview.patch.js v1.1.1 ================== | |
* | |
* This patch works around iOS9 UIWebView regression that causes infinite digest | |
* errors in Angular. | |
* | |
* The patch can be applied to Angular 1.2.0 โ 1.4.5. Newer versions of Angular | |
* have the workaround baked in. | |
* | |
* To apply this patch load/bundle this file with your application and add a |
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
'use strict'; | |
/** | |
* @ngdoc service | |
* @name sync:TangaCollectionService | |
* @description add your description | |
*/ | |
angular.module('tanga') | |
.service('TangaCollectionService', function TangaCollectionService(Backbone, _) { | |
var self = this; | |
this.options = { |
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
/** | |
* Created by Pascal Brewing | |
* Copyright (c) | |
* 2015 | |
* M-Way Solutions GmbH. All rights reserved. | |
* http://www.mwaysolutions.com | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are not permitted. | |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
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
'use strict'; | |
angular.module('dilemma', []) | |
.config(function ($stateProvider) { | |
$stateProvider | |
.state('app.dilemma', { | |
url: '/dilemma', | |
views:{ | |
pageContent: { | |
templateUrl: 'dilemma/templates/index.html', | |
controller: 'DilemmaCtrl as dilemmaC' |