This file contains hidden or 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
| new Vue({ | |
| el: '#app', | |
| data: { | |
| message: 'Hello Vue.js!' | |
| } | |
| }) |
This file contains hidden or 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
| import initMixin from './internal/init' | |
| import stateMixin from './internal/state' | |
| import eventsMixin from './internal/events' | |
| import lifecycleMixin from './internal/lifecycle' | |
| import miscMixin from './internal/misc' | |
| import dataAPI from './api/data' | |
| import domAPI from './api/dom' | |
| import eventsAPI from './api/events' | |
| import lifecycleAPI from './api/lifecycle' |
This file contains hidden or 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
| function Vue (options) { | |
| this._init(options) | |
| } | |
| // install internals | |
| initMixin(Vue) | |
| stateMixin(Vue) | |
| eventsMixin(Vue) | |
| lifecycleMixin(Vue) | |
| miscMixin(Vue) |
This file contains hidden or 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
| import ApiWrapper from './apiwrapper' | |
| import JeevesAbstract from './JeevesAbstract' | |
| import {EventEmitter} from 'events' | |
| let Jeeves = Object.assign({}, JeevesAbstract, EventEmitter, { | |
| items: { | |
| businessSegments: [] | |
| }, | |
| namespace: 'BUSINESS_SEGMENTS', |
This file contains hidden or 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
| import ConstantsWrapper from './constantsWrapper' | |
| export default { | |
| items: [], | |
| /** | |
| * We define a set of namespaced constants to avoid collision of EventEmitter | |
| * between modules | |
| * | |
| * @return {Object} Dictionary of namespaced actions |
This file contains hidden or 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
| export default function (namespace) { | |
| return { | |
| update: namespace + '.UPDATE', | |
| ready: namespace + '.READY' | |
| } | |
| } |
This file contains hidden or 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
| let ApiCalls = { | |
| businessId: '', | |
| moduleId: '', | |
| formId: '', | |
| type: '', | |
| parentId: '', | |
| baseUrl: '//admin:[email protected]/', | |
| apiUrl: '', | |
| /** |
This file contains hidden or 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
| $fieldName = new TextField('FieldName', 'Field name', null, 255); |
This file contains hidden or 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
| <?php | |
| class ExampleStrip extends Strip | |
| { | |
| //-------------------------------------------- DB model | |
| /** | |
| * @var array | |
| */ | |
| private static $db = [ |
This file contains hidden or 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
| # ------------------------------------------ | |
| # GITIGNORE FOR WORDPRESS | |
| # Really simple .gitignore for new Wordpress intallations. | |
| # User created plugins or themes have to be manually included in it. | |
| # ------------------------------------------ | |
| # Ignore everything except the wp-content folder (because it contains the themes | |
| # and plugins), and the gitignore file itself | |
| /* | |
| !.gitignore |