14 lines
527 B
JavaScript
14 lines
527 B
JavaScript
$(function() {
|
|
$.getJSON('js/apps.json', function(data) {
|
|
$.each(data, function(id, props) {
|
|
var div = $('#'+id).show();
|
|
if (props.hasOwnProperty('url'))
|
|
div.find('h2 a').attr('href', props.url.replace('{host}', window.location.hostname));
|
|
if (props.hasOwnProperty('login'))
|
|
div.find('.login').text(props.login);
|
|
if (props.hasOwnProperty('password'))
|
|
div.find('.password').text(props.password);
|
|
});
|
|
});
|
|
});
|