Skip to content

Commit

Permalink
added license
Browse files Browse the repository at this point in the history
  • Loading branch information
Teun de Wijs committed Dec 18, 2019
1 parent 7faf1b1 commit f92fe19
Show file tree
Hide file tree
Showing 22 changed files with 472 additions and 337 deletions.
23 changes: 0 additions & 23 deletions .eslintrc.json

This file was deleted.

10 changes: 10 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Copyright 2019 ISAAC and/or its affiliates.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Notices for
Masanao Izumo <[email protected]> for deflate.js
2 changes: 1 addition & 1 deletion material-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ export class MaterialModule {}

/** Copyright 2019 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license */
can be found in the LICENSE file at http://angular.io/license */
6 changes: 3 additions & 3 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ export class AppComponent {
mousemove;
hide;
ngOnInit() {
window.addEventListener("dragover", e => {
window.addEventListener('dragover', e => {
e && e.preventDefault();
}, false);
window.addEventListener("drop", e => {
window.addEventListener('drop', e => {
e && e.preventDefault();
}, false);
this.resizableArea = document.getElementById('resizableTextarea');
Expand All @@ -45,7 +45,7 @@ export class AppComponent {
this.moveAt(event.pageX);
}
getHalf() {
return this.util.diagram.style.height / 2
return this.util.diagram.style.height / 2;
}

}
4 changes: 2 additions & 2 deletions src/app/components/diagram/diagram.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export class DiagramComponent implements OnInit {
constructor(public generate: GenerateService) { }

ngOnInit() {
window.addEventListener("dragover", e => {
window.addEventListener('dragover', e => {
e && e.preventDefault();
}, false);
window.addEventListener("drop", e => {
window.addEventListener('drop', e => {
e && e.preventDefault();
}, false);
}
Expand Down
16 changes: 8 additions & 8 deletions src/app/components/editor/editor.component.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Component, OnInit, ViewChild } from '@angular/core'
import { StylingService } from 'src/app/services/styling.service'
import { ZipService } from 'src/app/services/zip.service'
import { MatDialog } from '@angular/material'
import { GenerateService } from 'src/app/services/generate.service'
import { ImportExportService } from 'src/app/services/importexport.service'
import { UtilityService } from 'src/app/services/utility.service'
import { Component, OnInit, ViewChild } from '@angular/core';
import { StylingService } from 'src/app/services/styling.service';
import { ZipService } from 'src/app/services/zip.service';
import { MatDialog } from '@angular/material';
import { GenerateService } from 'src/app/services/generate.service';
import { ImportExportService } from 'src/app/services/importexport.service';
import { UtilityService } from 'src/app/services/utility.service';


@Component({
Expand All @@ -19,7 +19,7 @@ export class EditorComponent implements OnInit {
ngOnInit() {
}

close(){
close() {
this.util.openEditor = false;
setTimeout(() => {
this.util.calcHeight();
Expand Down
Loading

0 comments on commit f92fe19

Please sign in to comment.