Skip to content

Commit

Permalink
Change preserver option to overwrite option
Browse files Browse the repository at this point in the history
Not sure it works though...
  • Loading branch information
BigBlueHat committed Jan 18, 2017
1 parent 5b37a0f commit 00d6ecb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -5825,7 +5825,7 @@ window.app = new Vue({
config: {
jsonld: {
base: '',
preserve: true
overwrite: false
},
n3: {}
},
Expand Down
6 changes: 3 additions & 3 deletions index.html
Expand Up @@ -55,9 +55,9 @@ <h1 class="ui dividing page header">
</div>
</div>
<div class="item">
<div class="ui checkbox input" @click="config.jsonld.preserve = !config.jsonld.preserve">
<input type="checkbox" v-model="config.jsonld.preserve">
<label>preserve</label>
<div class="ui checkbox input" @click="config.jsonld.overwrite = !config.jsonld.overwrite">
<input type="checkbox" v-model="config.jsonld.overwrite">
<label>overwrite</label>
</div>
</div>
<div class="item">
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -49,7 +49,7 @@ window.app = new Vue({
config: {
jsonld: {
base: '',
preserve: true
overwrite: false
},
n3: {}
},
Expand Down

0 comments on commit 00d6ecb

Please sign in to comment.