-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from duckzland/master
NewFeature: Adding asHtml() to TextWithSlug
- Loading branch information
Showing
6 changed files
with
37 additions
and
12 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/*! | ||
* Determine if an object is a Buffer | ||
* | ||
* @author Feross Aboukhadijeh <https://feross.org> | ||
* @license MIT | ||
*/ | ||
|
||
/** | ||
* @license | ||
* Lodash <https://lodash.com/> | ||
* Copyright OpenJS Foundation and other contributors <https://openjsf.org/> | ||
* Released under MIT license <https://lodash.com/license> | ||
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE> | ||
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"/js/field.js": "/js/field.js", | ||
"/css/field.css": "/css/field.css" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
import SlugIndexField from './components/Slug/IndexField'; | ||
import SlugDetailField from './components/Slug/DetailField'; | ||
import SlugFormField from './components/Slug/FormField'; | ||
|
||
import TextSlugIndexField from './components/TextWithSlug/IndexField'; | ||
import TextSlugDetailField from './components/TextWithSlug/DetailField'; | ||
import TextSlugFormField from './components/TextWithSlug/FormField'; | ||
|
||
Nova.booting((Vue, router) => { | ||
Vue.component('index-nova-slug-field', require('./components/Slug/IndexField')); | ||
Vue.component('detail-nova-slug-field', require('./components/Slug/DetailField')); | ||
Vue.component('form-nova-slug-field', require('./components/Slug/FormField')); | ||
Vue.component('index-nova-slug-field', SlugIndexField); | ||
Vue.component('detail-nova-slug-field', SlugDetailField); | ||
Vue.component('form-nova-slug-field', SlugFormField); | ||
|
||
Vue.component('index-nova-textwithslug-field', require('./components/TextWithSlug/IndexField')); | ||
Vue.component('detail-nova-textwithslug-field', require('./components/TextWithSlug/DetailField')); | ||
Vue.component('form-nova-textwithslug-field', require('./components/TextWithSlug/FormField')); | ||
Vue.component('index-nova-textwithslug-field', TextSlugIndexField); | ||
Vue.component('detail-nova-textwithslug-field', TextSlugDetailField); | ||
Vue.component('form-nova-textwithslug-field', TextSlugFormField); | ||
}) |