Skip to content
This repository has been archived by the owner on Mar 7, 2023. It is now read-only.

Commit

Permalink
remove relative paths
Browse files Browse the repository at this point in the history
  • Loading branch information
bdavidxyz committed Dec 21, 2016
1 parent 5ca5acf commit 447e17f
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion live/app/components/challenge-item-qrocm.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* global jsyaml */
import _ from '../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import ChallengeItemGeneric from './challenge-item-generic';

Expand Down
2 changes: 1 addition & 1 deletion live/app/components/qcm-proposals.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Ember from 'ember';
import _ from '../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

export default Ember.Component.extend({

Expand Down
2 changes: 1 addition & 1 deletion live/app/components/qcu-proposals.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Ember from 'ember';
import _ from '../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

function _uncheckAllRadioButtons() {
this.$(':radio').prop('checked', false);
Expand Down
2 changes: 1 addition & 1 deletion live/app/helpers/convert-to-html.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* global showdown */
import Ember from 'ember';
import _ from '../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

export function convertToHtml(params) {
if (_.isArray(params) && params.length > 0) {
Expand Down
2 changes: 1 addition & 1 deletion live/app/helpers/property-of.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Ember from 'ember';
import _ from '../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

export function propertyOf(params) {
const map = params[0];
Expand Down
2 changes: 1 addition & 1 deletion live/app/models/answer/value-as-array-of-boolean-mixin.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Ember from 'ember';
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

export default Ember.Mixin.create({

Expand Down
2 changes: 1 addition & 1 deletion live/app/models/challenge/proposals-as-array-mixin.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Ember from 'ember';
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

export default Ember.Mixin.create({
_proposalsAsArray: Ember.computed('proposals', function () {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import rawQcmAnswer from '../data/answers/raw-qcm-answer';
import refQcmAnswer from '../data/answers/ref-qcm-answer';
Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/get-answer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import rawQcmAnswer from '../data/answers/raw-qcm-answer';
import refQcmAnswer from '../data/answers/ref-qcm-answer';
Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/get-assessment.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';
import rawAssessment from '../data/assessments/raw-assessment';
import refAssessment from '../data/assessments/ref-assessment';

Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/get-challenge.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import rawQcmChallenge from '../data/challenges/raw-qcm-challenge';
import refQcmChallengeFull from '../data/challenges/ref-qcm-challenge';
Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/get-course.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import refCourse from '../data/courses/ref-course';
import rawCourse from '../data/courses/raw-course';
Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/get-courses.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import refCourse from '../data/courses/ref-course';
import rawCourse from '../data/courses/raw-course';
Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/post-answers.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import rawQcmChallenge from '../data/challenges/raw-qcm-challenge';
import refQcmChallengeFull from '../data/challenges/ref-qcm-challenge';
Expand Down
2 changes: 1 addition & 1 deletion live/mirage/routes/post-assessments.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import rawAssessment from '../data/assessments/raw-assessment';
import refAssessment from '../data/assessments/ref-assessment';
Expand Down
2 changes: 1 addition & 1 deletion live/tests/unit/components/qcu-proposals-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _ from '../../../utils/lodash-custom';
import _ from 'pix-live/utils/lodash-custom';

import { expect } from 'chai';
import { describe, it } from 'mocha';
Expand Down
2 changes: 2 additions & 0 deletions live/tests/unit/utils/lodash-custom-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import lodashCustom from 'pix-live/utils/lodash-custom';

describe('Unit | Utility | lodash custom', function() {
// Replace this with your real tests.


it('works', function() {
const result = lodashCustom();
expect(result).to.be.ok;
Expand Down

0 comments on commit 447e17f

Please sign in to comment.