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 | |
# PackageStates.php | |
# This file is maintained by Flow's package management. Although you can edit it | |
# manually, you should rather use the command line commands for maintaining packages. | |
# You'll find detailed information about the typo3.flow:package:* commands in their | |
# respective help screens. | |
# This file will be regenerated automatically if it doesn't exist. Deleting this file | |
# should, however, never become necessary if you use the package commands. |
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
${q(site).find('instanceof TYPO3.Neos:Document').property('_name') == 'blog'} |
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
{{#autoForm collection=Collections.Clubs id="createClubForm" type="method" meteormethod="createClub"}} | |
<div class="form-group {{#if afFieldIsInvalid name='name'}}has-error{{/if}}"> | |
<div class="input-group"> | |
<span class="input-group-addon"> | |
Name | |
</span> | |
{{>afFieldInput name="name"}} | |
<span class="input-group-btn"> | |
<button type="submit" class="btn btn-primary"> |
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
Template.exerciseList.events({ | |
"keyup .js-exercise-text-search": function (ev, templ) { | |
Session.set("ExerciseListFilter", {"name": {$regex: ev.currentTarget.value, $options: 'i'}}); | |
} | |
}); | |
Template.exerciseList.helpers({ | |
exercises: function () { |
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
<template name="pageTreeNav"> | |
<div id="pageTree" class="js-pa-sortable js-pa-container" data-parent-id="null"> | |
{{#each getPageNodes}} | |
{{> pageTreeItem itemData=. level="2"}} | |
{{/each}} | |
</div> | |
</template> | |
<template name="pageTreeItem"> |
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
Template.registerHelper(Schemas, Schema); |
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
Router.configure({ | |
layoutTemplate: 'layoutBackend', | |
notFoundTemplate: 'page404', | |
loadingTemplate: 'loading', | |
i18n: { | |
languages: TP.Const.AllowedLangKey, | |
setLanguage: function (lang) { | |
if (Meteor.isClient) { | |
TP.Core.Functions.setLanguageKey(lang); |
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
<div id="eventCalendar" ui-calendar="eventCtrl.calendarConfig" ng-model="eventCtrl.eventSources" calendar="eventCalendar"></div> |
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
<template> | |
<file-input v-model="filename" @formData="formData"> | |
<v-btn @click.native="uploadFiles"> | |
</template> | |
<script> | |
import fileInput from './file-input.vue' | |
export default{ | |
components:{fileInput} |
OlderNewer