diff --git a/app/admin/query/controller.js b/app/admin/query/controller.js index 8b0f3d62a8..82e7098eff 100644 --- a/app/admin/query/controller.js +++ b/app/admin/query/controller.js @@ -52,10 +52,10 @@ export default Ember.Controller.extend(EditPanelProps, { results.forEach(function(result) { let resultRow = []; - /*resultRow.push({ + /* resultRow.push({ name: 'id', value: result.get('id') - });*/ + }); */ attributes.forEach(function(attribute) { currentValue = result.get(attribute); if (!Ember.isEmpty(currentValue)) { diff --git a/app/components/charge-quantity.js b/app/components/charge-quantity.js index 35a67a7d89..6d04259603 100644 --- a/app/components/charge-quantity.js +++ b/app/components/charge-quantity.js @@ -6,7 +6,7 @@ export default Ember.Component.extend({ tagName: 'td', pricingItem: null, - didReceiveAttrs(/*attrs*/) { + didReceiveAttrs(/* attrs */) { this._super(...arguments); this.quantitySelected = Ember.computed.alias('model.' + this.get('pricingItem.id')); }, diff --git a/app/components/date-input.js b/app/components/date-input.js index 82569b594a..931e5b68b9 100644 --- a/app/components/date-input.js +++ b/app/components/date-input.js @@ -70,7 +70,7 @@ export default HtmlInput.extend({ this.set('_picker', picker); }, - didReceiveAttrs(/*attrs*/) { + didReceiveAttrs(/* attrs */) { this._super(...arguments); let dateProperty = this.get('mainComponent.property'); let displayPropertyName = 'display_' + dateProperty; diff --git a/app/components/take-photo.js b/app/components/take-photo.js index 99f842254d..13b4ead706 100644 --- a/app/components/take-photo.js +++ b/app/components/take-photo.js @@ -21,7 +21,7 @@ export default Ember.Component.extend({ ], setupCamera: false, - /*** + /** * Setup the specified camera */ _cameraChange: function(selectedCamera) { @@ -47,7 +47,7 @@ export default Ember.Component.extend({ console.log('navigator.getUserMedia error: ', error); }, - /*** + /** * Callback for MediaStreamTrack.getSources */ _gotSources: function(sourceInfos) { @@ -74,7 +74,7 @@ export default Ember.Component.extend({ } }, - /*** + /** * Callback handler for getUserMedia. */ _gotStream: function(stream) { @@ -128,7 +128,7 @@ export default Ember.Component.extend({ video.addEventListener('canplay', this._setupVideo.bind(this), false); }, - /*** + /** * Setup the dimensions for the video preview and picture elements. */ _setupVideo: function() { diff --git a/app/models/inv-location.js b/app/models/inv-location.js index cec700641e..225e7b7c55 100644 --- a/app/models/inv-location.js +++ b/app/models/inv-location.js @@ -28,7 +28,7 @@ let InventoryLocation = AbstractModel.extend(LocationName, { } }, acceptance: { - /*** + /** * Validate that the adjustment quantity is a number and that if a deduction there are enough items to deduct */ accept: true, diff --git a/app/models/invoice.js b/app/models/invoice.js index bc942b32c9..15516db150 100644 --- a/app/models/invoice.js +++ b/app/models/invoice.js @@ -21,11 +21,11 @@ export default AbstractModel.extend(DateFormat, NumberFormat, { paymentProfile: DS.belongsTo('price-profile', { async: false }), - /*payments track the number of payment events attached to an invoice.*/ + // payments track the number of payment events attached to an invoice. payments: DS.hasMany('payment', { async: false }), - /*the individual line items of the invoice*/ + // the individual line items of the invoice lineItems: DS.hasMany('billing-line-item', { async: false }),