2017-09-14 21:39:01 +02:00
|
|
|
$(function() {
|
|
|
|
$.getJSON('js/apps.json', function(data) {
|
2017-10-14 11:18:05 +02:00
|
|
|
$.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);
|
2017-09-14 21:39:01 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|