-
Notifications
You must be signed in to change notification settings - Fork 48
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 #2212 from civicrm/staging
Sync master with staging
- Loading branch information
Showing
769 changed files
with
86,521 additions
and
9,447 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
<author>gregmeszaros</author> | ||
<email>[email protected]</email> | ||
</maintainer> | ||
<releaseDate>2017-10-06</releaseDate> | ||
<version>1.6.12</version> | ||
<releaseDate>2017-10-10</releaseDate> | ||
<version>1.7.0</version> | ||
<develStage>alpha</develStage> | ||
<compatibility> | ||
<ver>4.7</ver> | ||
|
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
<author>Robin Mitra</author> | ||
<email>[email protected]</email> | ||
</maintainer> | ||
<releaseDate>2017-10-06</releaseDate> | ||
<version>1.6.12</version> | ||
<releaseDate>2017-10-10</releaseDate> | ||
<version>1.7.0</version> | ||
<develStage>alpha</develStage> | ||
<compatibility> | ||
<ver>4.7</ver> | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
50 changes: 0 additions & 50 deletions
50
contactsummary/api/v3/ContactSummary/Getabsenceaggregate.php
This file was deleted.
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 |
---|---|---|
@@ -1 +1 @@ | ||
#contactsummary{padding:20px}#contactsummary .panel--key-dates>.panel-body{padding-bottom:0;padding-top:0}#contactsummary .panel--key-details{margin-bottom:0 !important}#contactsummary .panel--leave .list-unstyled{margin-bottom:0}@media (min-width: 1200px){#contactsummary .panel--sickness .col--sickness-days{text-align:right}} | ||
#contactsummary{padding:20px}#contactsummary .panel--key-dates>.panel-body{padding-bottom:0;padding-top:0}#contactsummary .panel--key-details{margin-bottom:0 !important} |
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 |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
<author>Robin Mitra</author> | ||
<email>[email protected]</email> | ||
</maintainer> | ||
<releaseDate>2017-10-06</releaseDate> | ||
<version>1.6.12</version> | ||
<releaseDate>2017-10-10</releaseDate> | ||
<version>1.7.0</version> | ||
<develStage>alpha</develStage> | ||
<compatibility> | ||
<ver>4.7</ver> | ||
|
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
30 changes: 28 additions & 2 deletions
30
contactsummary/js/src/contact-summary/controllers/contactSummary.js
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,2 +1,28 @@ | ||
define([ 'contact-summary/modules/controllers', 'contact-summary/modules/settings', 'contact-summary/services/contact'], function (controllers) { 'use strict'; /** * @ngdoc controller * @name ContactSummaryCtrl * @param $log * @param {ContactService} Contact * @param settings * @constructor */ function ContactSummaryCtrl($log, Contact, settings) { $log.debug('Controller: ContactSummaryCtrl'); var templateDir = settings.pathBaseUrl + settings.pathTpl; this.partials = { keyDetails: templateDir + '/include/keyDetails.html', keyDates: templateDir + '/include/keyDates.html', leave: templateDir + '/include/leave.html', sickness: templateDir + '/include/sickness.html' }; this.ready = false; // Contact.get().then(function (response) { // $log.debug('Contact', response); // this.contact = response; // this.ready = true; // }.bind(this)); | ||
} controllers.controller('ContactSummaryCtrl', ['$log', 'ContactService', 'settings', ContactSummaryCtrl]);}); | ||
define([ | ||
'contact-summary/modules/controllers', | ||
'contact-summary/modules/settings' | ||
], function (controllers) { | ||
'use strict'; | ||
|
||
/** | ||
* @ngdoc controller | ||
* @name ContactSummaryCtrl | ||
* @param $log | ||
* @param settings | ||
* @constructor | ||
*/ | ||
function ContactSummaryCtrl($log, settings) { | ||
$log.debug('Controller: ContactSummaryCtrl'); | ||
|
||
var templateDir = settings.pathBaseUrl + settings.pathTpl; | ||
|
||
this.partials = { | ||
keyDetails: templateDir + '/include/keyDetails.html', | ||
keyDates: templateDir + '/include/keyDates.html' | ||
}; | ||
|
||
this.ready = false; | ||
} | ||
|
||
controllers.controller('ContactSummaryCtrl', ['$log', 'settings', ContactSummaryCtrl]); | ||
}); |
47 changes: 0 additions & 47 deletions
47
contactsummary/js/src/contact-summary/controllers/leave.js
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.