Skip to content

Commit

Permalink
Update links to new repo.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Jan 25, 2017
1 parent 2362f55 commit cba546d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
**survey.js.editor** is the visual editor for [surveyjs](https://github.com/andrewtelnov/surveyjs). It uses JSON to store the survey metadata.
**survey.js.editor** is the visual editor for [surveyjs](https://github.com/surveyjs/surveyjs). It uses JSON to store the survey metadata.

[![Build Status](https://travis-ci.org/andrewtelnov/surveyjs.editor.svg?branch=master)](https://travis-ci.org/andrewtelnov/surveyjs.editor)
[![Build Status](https://travis-ci.org/surveyjs/editor.svg?branch=master)](https://travis-ci.org/surveyjs/editor)

#Download
Dowload the latest version as zip file [Download](http://surveyjs.org/downloads/surveyjs.editor.zip)
Expand All @@ -20,7 +20,7 @@ To build library yourself:

1. **Clone the repo from GitHub**
```
git clone https://github.com/andrewtelnov/surveyjs.editor.git
git clone https://github.com/surveyjs/editor.git
cd surveyjs.editor
```

Expand Down Expand Up @@ -53,15 +53,9 @@ To build library yourself:
The first command will copy all required files to 'wwwroot' directory and the last command will run unit tests usign [Karma](https://karma-runner.github.io/0.13/index.html)


##Coming features

Find the features under development and Todo list in the [Trello board](https://trello.com/b/lAwhTw3H/surveyjs-project).

#Dependencies
The library depends on: [surveyjs](http://surveyjs.org), [knockoutjs](http://knockoutjs.com), [bootstrap](http://getbootstrap.com) and [ace editor](https://ace.c9.io/).

#License

|Non-commercial use | Commercial use |
|------|------|
|[![Noncommercial](https://licensebuttons.net/l/by-nc/3.0/88x31.png)](http://creativecommons.org/licenses/by-nc/3.0/legalcode) | Please contact me: andrew.telnov at gmail.com |
The SurveyJS Editor is NOT FREE for commercial using. Please find more about licensing the product [here](http://editor.surveyjs.io/license.html).
5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,9 @@ paths.concatCssDest = paths.webroot + "css/site.min.css";

var copyright = ["/*!",
"* surveyjs Editor v" + editorVersion,
"* (c) Andrew Telnov - http://surveyjs.org/builder/",
"* Github - https://github.com/andrewtelnov/survey.js.editor",
"* (c) Devsoft Baltic OÜ - http://surveyjs.io/",
"* Github - https://github.com/surveyjs/editor",
"* License: (http://editor.surveyjs.io/license.html)",
"*/", "", ""].join("\n");

var webpack_params = {
Expand Down
4 changes: 2 additions & 2 deletions packagetemplate.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
"Editor",
"surveyjs"
],
"homepage": "https://surveyjs.org/builder/",
"homepage": "http://editor.surveyjs.io",
"files": [
"dist/",
"js/"
],
"main": "./js/surveyeditor.min.js",
"repository": {
"type": "git",
"url": "https://github.com/andrewtelnov/surveyjs.editor.git"
"url": "https://github.com/surveyjs/surveyjs.git"
},
"engines": {
"node": ">=0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion tests/ObjectEditorTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ QUnit.test("Use metadata getPropertyValue function", function (assert) {
editor.koActiveProperty().koValue("newName");
assert.equal(property.koText(), "test", "use the real value to get value");
});
QUnit.test("Fix the bug with title property, https://github.com/andrewtelnov/surveyjs.editor/issues/33", function (assert) {
QUnit.test("Fix the bug with title property, https://github.com/surveyjs/editor/issues/33", function (assert) {
var editor = new SurveyObjectEditor();
var car = new BigCar();
car.name = "name1";
Expand Down

0 comments on commit cba546d

Please sign in to comment.