Created
July 28, 2015 03:58
-
-
Save minillinim/93e3d5c14e8bda076292 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function _load_components() { | |
_reset_page() | |
// do some magic | |
var links = _get_data(_WLCD_base_uri)["_links"]; | |
$.each(links, function(idx, link) { | |
if ("self" !== link["rel"]) { | |
var title = link["title"].toUpperCase(); | |
var iid = add_top_menu_item(_WLCD_block_ref, title, _load_machines); | |
_WLCD_iid_2_component_uri[iid] = link["uri"]; | |
} | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment