mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-16 02:36:16 +01:00
added button in admin to upload favicon + show current favicon image
This commit is contained in:
@@ -75,13 +75,20 @@ define(['uploader'], function(uploader) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
$('#uploadLogoBtn').on('click', function() {
|
$('#uploadLogoBtn').on('click', function() {
|
||||||
|
|
||||||
uploader.open(RELATIVE_PATH + '/admin/uploadlogo', function(image) {
|
uploader.open(RELATIVE_PATH + '/admin/uploadlogo', function(image) {
|
||||||
$('#logoUrl').val(image);
|
$('#logoUrl').val(image);
|
||||||
});
|
});
|
||||||
|
|
||||||
uploader.hideAlerts();
|
uploader.hideAlerts();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('#uploadLogoBtn').on('click', function() {
|
||||||
|
uploader.open(RELATIVE_PATH + '/admin/uploadfavicon', function() {
|
||||||
|
$('#favicon').attr('src', './../favicon.ico?v=' + new Date().getTime());
|
||||||
|
});
|
||||||
|
|
||||||
|
uploader.hideAlerts();
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
Settings.remove = function(key) {
|
Settings.remove = function(key) {
|
||||||
|
|||||||
@@ -12,11 +12,14 @@
|
|||||||
<input type="text" class="form-control" placeholder="Keywords describing your community, comma-seperated" data-field="keywords" /><br />
|
<input type="text" class="form-control" placeholder="Keywords describing your community, comma-seperated" data-field="keywords" /><br />
|
||||||
<label>Site Logo</label>
|
<label>Site Logo</label>
|
||||||
<input id="logoUrl" type="text" class="form-control" placeholder="Path to a logo to display on forum header" data-field="brand:logo" /><br />
|
<input id="logoUrl" type="text" class="form-control" placeholder="Path to a logo to display on forum header" data-field="brand:logo" /><br />
|
||||||
<input id="uploadLogoBtn" type="button" class="btn btn-default" value="Upload"></input> <br />
|
<input id="uploadLogoBtn" type="button" class="btn btn-default" value="Upload Logo"></input> <br />
|
||||||
<label>Imgur Client ID</label>
|
<label>Imgur Client ID</label>
|
||||||
<input type="text" class="form-control" placeholder="Imgur ClientID for image uploads" data-field="imgurClientID" /><br />
|
<input type="text" class="form-control" placeholder="Imgur ClientID for image uploads" data-field="imgurClientID" /><br />
|
||||||
<label>Maximum User Image Size</label>
|
<label>Maximum User Image Size</label>
|
||||||
<input type="text" class="form-control" placeholder="Maximum size of uploaded user images in kilobytes" data-field="maximumProfileImageSize" />
|
<input type="text" class="form-control" placeholder="Maximum size of uploaded user images in kilobytes" data-field="maximumProfileImageSize" /><br />
|
||||||
|
<label>Favicon</label><br />
|
||||||
|
<img src="./../favicon.ico" />
|
||||||
|
<input id="uploadFaviconBtn" type="button" class="btn btn-default" value="Upload Favicon"></input> <br />
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user