Skip to content

Commit c4eb7f6

Browse files
committedMay 8, 2018
Changing the class names to make it have better external interfaces.
1 parent 061fc2e commit c4eb7f6

33 files changed

+2010
-2133
lines changed
 

‎app/builder.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ node server</pre>
7171
</div>
7272
<script type="text/javascript">
7373
var subJSON = document.getElementById('subjson');
74-
var builder = new Formio.Builder(document.getElementById("builder"), {
74+
var builder = new Formio.FormBuilder(document.getElementById("builder"), {
7575
display: 'form',
7676
components: [],
7777
settings: {

‎dist/formio.contrib.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.contrib.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.embed.js

+20-44
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.embed.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.form.js

+20-32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.form.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.full.js

+36-48
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/formio.full.min.js

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const build = (input, output) => {
5252
gulp.task('scripts-formio', build('Formio.js', 'formio.js'));
5353
gulp.task('scripts-utils', build('utils/utils.js', 'formio.utils.js'));
5454
gulp.task('scripts-full', build('index.js', 'formio.full.js'));
55-
gulp.task('scripts-form', build('createForm.js', 'formio.form.js'));
55+
gulp.task('scripts-form', build('Form.js', 'formio.form.js'));
5656
gulp.task('scripts-embed', build('formio.embed.js', 'formio.embed.js'));
5757
gulp.task('scripts-contrib', build('contrib/index.js', 'formio.contrib.js'));
5858

‎karma.conf.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = function(config) {
88
files: [
99
'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css',
1010
'https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css',
11-
'dist/formio.builder.min.css',
11+
'dist/formio.full.min.css',
1212
'src/**/*.spec.js'
1313
],
1414
exclude: [

‎src/Builder.js

-74
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.