Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssogaard committed Jun 25, 2018
2 parents 3c999a0 + ce494e6 commit 774f658
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Include ConversationalForm in your page:

```html
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.80/dist/conversational-form.min.js" crossorigin></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.83/dist/conversational-form.min.js" crossorigin></script>
```
Or download the latest release:
- Clone the repo: ````git clone https://github.com/space10-community/conversational-form.git````
Expand Down
10 changes: 8 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
"name": "conversational-form",
"version": "0.9.82",
"version": "0.9.83",
"authors": [
{
"name" : "Daniel Friis",
"email": "daniel@space10.oi",
"url" : "http://space10.io"
}, {
},
{
"name" : "Felix Nielsen",
"email": "felix.nielsen@rwatgg.dk",
"url" : "http://rwatgg.dk"
},
{
"name" : "Jens Soegaard",
"email": "jens@jenssogaard.com",
"url" : "https://jenssogaard.com"
}
],
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion dist/conversational-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -5437,7 +5437,7 @@ var cf;
(function (cf_1) {
var ConversationalForm = /** @class */ (function () {
function ConversationalForm(options) {
this.version = "0.9.81";
this.version = "0.9.83";
this.cdnPath = "https://cdn.jsdelivr.net/gh/space10-community/conversational-form@{version}/dist/";
this.isDevelopment = false;
this.loadExternalStyleSheet = true;
Expand Down
2 changes: 1 addition & 1 deletion dist/conversational-form.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/0.9.80/functionality/custom-placeholder/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<meta name="description" content="Conversational Form is an open-source concept by SPACE10 to easily turn any form element on a web page into a conversational form interface.">
<meta name="keywords" content="conversational interfaces, conversational form, interface, bot, cui">
<link rel="icon" href="../../assets/favicon.ico">
<link rel="icon" href="../assets/favicon.ico">

<link rel="publisher" href="http://space10.io/"/>

Expand Down
2 changes: 1 addition & 1 deletion docs/0.9.80/getting-started/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ <h1 id="getting-started">Getting Started</h1>
<p>Turning web forms into conversations. Conversational Form is an open-source concept by <a href="https://space10.io/" target="_blank">SPACE10</a> to easily turn any form element on a web page into a conversational form interface. It features conversational replacement of all input elements, reusable variables from previous questions and complete customization and control over the styling.</p>

<h2 id="include-conversationalform-in-your-page">Include ConversationalForm in your page</h2>
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.80/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.83/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>

<p>ConversationalForm will automatically look through the DOM for a form element with the attibute cf-form, and auto-instantiate.</p>
<pre><code class="language-html" data-lang="html">&lt;form id="my-form-element" cf-form ...></code></pre>
Expand Down
2 changes: 1 addition & 1 deletion docs/0.9.80/src/pages/getting-started/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<p>Turning web forms into conversations. Conversational Form is an open-source concept by <a href="https://space10.io/" target="_blank">SPACE10</a> to easily turn any form element on a web page into a conversational form interface. It features conversational replacement of all input elements, reusable variables from previous questions and complete customization and control over the styling.</p>

<h2 id="include-conversationalform-in-your-page">Include ConversationalForm in your page</h2>
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@{{nextVersion}}/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>
<pre><code class="language-html" data-lang="html">&lt;script type="text/javascript" src="https://cdn.jsdelivr.net/gh/space10-community/conversational-form@0.9.83/dist/conversational-form.min.js" crossorigin>&lt;/script></code></pre>

<p>ConversationalForm will automatically look through the DOM for a form element with the attibute cf-form, and auto-instantiate.</p>
<pre><code class="language-html" data-lang="html">&lt;form id="my-form-element" cf-form ...></code></pre>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conversational-form",
"version": "0.9.82",
"version": "0.9.83",
"description": "Turning web forms into conversations",
"main": "dist/conversational-form.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/cf/ConversationalForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace cf {
}

export class ConversationalForm{
public version: string = "0.9.81";
public version: string = "0.9.83";

public static animationsEnabled: boolean = true;
public static illustrateAppFlow: boolean = true;
Expand Down

0 comments on commit 774f658

Please sign in to comment.