favoritesExtensioni

by merganser

HTML

<div>

   <h1>
         Favorites
   </h1>
   
   <div id="wrapper">
   
   </div>
   
</div>

JavaScript

var dataUrl = "https://services.odata.org/V4/Northwind/Northwind.svc/Categories?$top=20";

var data = [
  {
    "org": "HR",
    "apps": [
      {
        "app": "App1",
        "icon": "http://imageurl.com",
        "environments": [
          {
            "enivronment": "Development",
            "url": "http://url.com"
          },
          {
            "enivronment": "Test",
            "url": "http://url.com"
          }
        ]
      }
    ]
  },
  {
    "org": "HS",
    "apps": [
      {
        "app": "App1",
        "icon": "http://imageurl.com",
        "environments": [
          {
            "enivronment": "Development",
            "url": "http://url.com"
          },
          {
            "enivronment": "Test",
            "url": "http://url.com"
          }
        ]
      }
    ]
  }
];

var wrapper =$("#favoriteLinksWrapper");

$(document).ready(function(){
			
      loadAnchored();
      buildList();
});

function loadAnchored(){
	  //
}

function loadLinks()
{
		var links = [];
    
    /*$.get( "ajax/test.html", function( data ) {
      console.log(data);
    });*/
    
    return links;
    
}

function buildLists(){

}