Skip to content

Commit 110dd60

Browse files
committed
chore: Rename github organization to livingdocsIO
1 parent 5a2ebe8 commit 110dd60

File tree

5 files changed

+7
-13
lines changed

5 files changed

+7
-13
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Upfront GmbH
3+
Copyright (c) 2014 Upfront GmbH, 2015 - 2018 Livingdocs AG
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# editable.js
2-
[![Build Status](https://travis-ci.org/upfrontIO/editable.js.svg?branch=master)](https://travis-ci.org/upfrontIO/editable.js)
2+
[![Build Status](https://travis-ci.org/livingdocsIO/editable.js.svg?branch=master)](https://travis-ci.org/livingdocsIO/editable.js)
33
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com)
4-
[![Dependency Status](https://david-dm.org/upfrontIO/editable.js/master.svg)](https://david-dm.org/upfrontIO/editable.js/master)
5-
[![devDependency Status](https://david-dm.org/upfrontIO/editable.js/master/dev-status.svg)](https://david-dm.org/upfrontIO/editable.js/master#info=devDependencies)
4+
[![Dependency Status](https://david-dm.org/livingdocsIO/editable.js/master.svg)](https://david-dm.org/livingdocsIO/editable.js/master)
5+
[![devDependency Status](https://david-dm.org/livingdocsIO/editable.js/master/dev-status.svg)](https://david-dm.org/livingdocsIO/editable.js/master#info=devDependencies)
66
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
77

88
[![NPM](https://nodei.co/npm/upfront-editable.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/upfront-editable/)
@@ -28,7 +28,7 @@ jQuery is a peerDependency, so you need to install it alongside editable.js. You
2828

2929
## Plnkr Demo
3030

31-
You can check out a [simple demo on the website](https://upfrontio.github.io/editable.js/). It features a formatting toolbar and the default insert, split and merge behavior that allow to add and remove content blocks like paragraphs easily.
31+
You can check out a [simple demo on the website](https://livingdocsio.github.io/editable.js/). It features a formatting toolbar and the default insert, split and merge behavior that allow to add and remove content blocks like paragraphs easily.
3232

3333

3434
## Events Overview

WERE_HIRING.md

-6
This file was deleted.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
},
7070
"repository": {
7171
"type": "git",
72-
"url": "https://github.com/upfrontIO/editable.js.git"
72+
"url": "https://github.com/livingdocsIO/editable.js.git"
7373
},
7474
"scripts": {
7575
"start": "webpack-dev-server --inline --hot",

src/keyboard.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default class Keyboard {
6161
if (!notifyCharacterEvent) return
6262
// Don't notify character events as long as either the ctrl or
6363
// meta key are pressed.
64-
// see: https://github.com/upfrontIO/editable.js/pull/125
64+
// see: https://github.com/livingdocsIO/editable.js/pull/125
6565
if (!event.ctrlKey && !event.metaKey) return this.notify(target, 'character', event)
6666
}
6767
}

0 commit comments

Comments
 (0)