Skip to content

Instantly share code, notes, and snippets.

View bangpound's full-sized avatar

Benjamin Doherty bangpound

View GitHub Profile
commit ec5b765e418aaa19d92302793b3220a30984b604
Merge: 1374a92 d1b340a
Author: Benjamin Doherty <[email protected]>
Date: Thu Jan 7 10:51:07 2016 -0600
Merge branch 'feature/CC-18-id-patched-modules' into develop
commit dadaf7a8aded9f67b5b44d6a6e998901baea96af
Author: Benjamin Doherty <[email protected]>
Date: Thu Jan 7 10:50:56 2016 -0600
preserve higher in tree.
diff --git a/composer.json b/composer.json
index 332ab30..5dd2378 100644
--- a/composer.json
+++ b/composer.json
diff --git a/approved-for-production/index-no-results.html b/approved-for-production/index-no-results.html
index 73162f5..e374ac4 100644
--- a/approved-for-production/index-no-results.html
+++ b/approved-for-production/index-no-results.html
@@ -225,7 +225,7 @@
</div>
</div>
</div>
- <form class="ctools-auto-submit-full-form ctools-auto-submit-processed jquery-once-1-processed ng-pristine ng-valid" action="/frontpage" method="get" id="views-exposed-form-northwesternarts-frontpage-page" accept-charset="UTF-8"><div><div class="views-exposed-form cols4 contain-1120 grid-filter" id="program-filter">
+ <form class="ctools-auto-submit-full-form ctools-auto-submit-processed jquery-once-1-processed ng-pristine ng-valid" action="/frontpage" method="get" id="views-exposed-form-artscircle-frontpage-page" accept-charset="UTF-8"><div><div class="views-exposed-form cols4 contain-1120 grid-filter" id="program-filter">
<?php
/**
* Form alter that just disables the preview button.
*/
function caxy_form_contact_message_feedback_form_alter(&$form, FormStateInterface $form_state) {
$form['actions']['preview']['#access'] = FALSE;
}
/**
commit d6af3a3e4cd45c46ef9cd3c31d8347c59dc6c112
Author: Benjamin Doherty <[email protected]>
Date: Thu May 12 17:00:14 2016 -0500
use snake case for form element names.
diff --git a/src/BMMBundle/Form/AccountType.php b/src/BMMBundle/Form/AccountType.php
index e8971b0..c5cc2e2 100644
--- a/src/BMMBundle/Form/AccountType.php
+++ b/src/BMMBundle/Form/AccountType.php
commit c50e0e33bb2f3e47e226a18d1feb2d54ad0ee746
Author: Benjamin Doherty <[email protected]>
Date: Mon May 16 14:29:52 2016 -0500
expect company email.
diff --git a/src/BMMBundle/Form/ProfileType.php b/src/BMMBundle/Form/ProfileType.php
index 18cf747..1e7b82c 100644
--- a/src/BMMBundle/Form/ProfileType.php
+++ b/src/BMMBundle/Form/ProfileType.php
diff --git a/docroot/core/modules/inline_form_errors/src/FormErrorHandler.php b/docroot/core/modules/inline_form_errors/src/FormErrorHandler.php
index 8e0f1b8..c2dce23 100644
--- a/docroot/core/modules/inline_form_errors/src/FormErrorHandler.php
+++ b/docroot/core/modules/inline_form_errors/src/FormErrorHandler.php
@@ -87,12 +87,12 @@ protected function displayErrorMessages(array $form, FormStateInterface $form_st
if (!empty($error_links)) {
$render_array = [
[
- '#markup' => $this->formatPlural(count($error_links), '1 error has been found: ', '@count errors have been found: '),
+ '#markup' => $this->formatPlural(count($error_links), '<p>1 error has been found:</p>', '<p>@count errors have been found:</p>'),
commit 062c7a626df9f1c832738cfa00e33f143be3f414
Author: Benjamin Doherty <[email protected]>
Date: Tue May 24 09:39:24 2016 -0500
support dynamic site group.
diff --git a/docroot/sites/default/settings.php b/docroot/sites/default/settings.php
index 1b6c720..c6da989 100644
--- a/docroot/sites/default/settings.php
+++ b/docroot/sites/default/settings.php
diff --git a/src/app/controllers/accountForm.controller.js b/src/app/controllers/accountForm.controller.js
index 96f64ce..303813c 100644
--- a/src/app/controllers/accountForm.controller.js
+++ b/src/app/controllers/accountForm.controller.js
@@ -1,5 +1,5 @@
export class AccountFormController {
- constructor ($log, HateoasResource, Account, $uibModalInstance, account, action, $scope) {
+ constructor ($log, HateoasResource, Account, $uibModalInstance, account, action, currentLedger, $scope) {
'ngInject';
diff --git a/src/app/filters/moneyPeriod.filter.js b/src/app/filters/moneyPeriod.filter.js
index eecf40a..de196af 100644
--- a/src/app/filters/moneyPeriod.filter.js
+++ b/src/app/filters/moneyPeriod.filter.js
@@ -1,6 +1,6 @@
angular
.module('bmmFilter')
- .filter('moneyPeriod', (moment)=> {
+ .filter('moneyPeriod', (moment) => {
'ngInject';