Read the custom RSS directly from the settings
Signed-off-by: Roman Schmerold (BNoiZe) <bnoize@froxlor.org>
This commit is contained in:
8
templates/Sparkle/assets/js/main.js
vendored
8
templates/Sparkle/assets/js/main.js
vendored
@@ -28,11 +28,11 @@ $(document).ready(function() {
|
||||
|
||||
// Load Newsfeed
|
||||
var ajax_load = "<div id='newsitem'>Loading newsfeed...</div>";
|
||||
var url = "";
|
||||
if (typeof $("#newsfeed").data("url") !== "undefined") {
|
||||
url = "&url=" + $("#newsfeed").data("url");
|
||||
var role = "";
|
||||
if (typeof $("#newsfeed").data("role") !== "undefined") {
|
||||
role = "&role=" + $("#newsfeed").data("role");
|
||||
}
|
||||
$("#newsfeeditems").html(ajax_load).load("lib/ajax.php?action=newsfeed" + url, function() {
|
||||
$("#newsfeeditems").html(ajax_load).load("lib/ajax.php?action=newsfeed" + role, function() {
|
||||
if ($("#newsfeeditems").html().length > 0) {
|
||||
$(window).trigger('resize');
|
||||
$("#newsfeed").slideDown();
|
||||
|
||||
2
templates/Sparkle/customer/index/index.tpl
vendored
2
templates/Sparkle/customer/index/index.tpl
vendored
@@ -150,7 +150,7 @@ $header
|
||||
|
||||
<div class="grid-u-1-2">
|
||||
<if Settings::Get('customer.show_news_feed') == '1'>
|
||||
<table class="dboarditem full" id="newsfeed" data-url="{$news_feed_url}">
|
||||
<table class="dboarditem full" id="newsfeed" data-role="customer">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>News</th>
|
||||
|
||||
Reference in New Issue
Block a user