Skip to content

Commit

Permalink
Starting to define the organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdovicak committed Jan 15, 2014
1 parent 853dc5f commit 620dc12
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 455 deletions.
18 changes: 18 additions & 0 deletions Application.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
var Application = (function(){
function Application(){
var _this = this;
_this.rootOrganization = {};

}
return Application;
})();

var Organization = (function(){
function Organization(dataObj){
var _this = this;
_this.parent = null,
_this.isRoot = dataObj.parent ? false : true;
};

return Organization;
})();
1 change: 1 addition & 0 deletions SpecRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

<!-- include source files here... -->
<script type="text/javascript" src="spec/OrgUserRoleSpec.js"></script>
<script type="text/javascript" src="Application.js"></script>


<script type="text/javascript">
Expand Down
212 changes: 0 additions & 212 deletions spec/AffiliateScheduleSpec.js

This file was deleted.

48 changes: 0 additions & 48 deletions spec/DatacallsSpec.js

This file was deleted.

Loading

0 comments on commit 620dc12

Please sign in to comment.