Skip to content

Commit

Permalink
fdr service - now displaying fdr along side score
Browse files Browse the repository at this point in the history
  • Loading branch information
ivp08001 committed Dec 11, 2015
2 parents f0e112f + 1215eae commit ebd10ee
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions VQI_PathwayEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2030,9 +2030,21 @@ var VQI_PathwayEditor = function(parent) {
document.getElementById(parent + '-undo').addEventListener('click', undo);
document.getElementById(parent + '-redo').addEventListener('click', redo);

//external functions
self.setDataToSpray = function(data){
//external functions

self.loadPathwayExternal = function (id) {
loadPathway(id);
}

self.sprayColorExternal = function (list) {
sprayColor(list);
}

self.testExternal = function () {
console.log(print);
}
self.setDataToSpray = function (data) {
this.sprayData = data;
};
});
});
};

0 comments on commit ebd10ee

Please sign in to comment.