mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-11 01:33:24 +01:00
sending icon data to api rest
This commit is contained in:
parent
183ab33729
commit
86ba19c120
@ -91,6 +91,12 @@ jQuery.fn.dialogForm = function (options) {
|
|||||||
formData[elem.name] = elem.value;
|
formData[elem.name] = elem.value;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// FIX: How should I do this?
|
||||||
|
var icon = $("#defaultIcon");
|
||||||
|
if (icon) {
|
||||||
|
formData["icon"] = icon.find('i').attr('class');
|
||||||
|
}
|
||||||
|
|
||||||
// Success actions ...
|
// Success actions ...
|
||||||
var onSuccess = function (jqXHR, textStatus, data) {
|
var onSuccess = function (jqXHR, textStatus, data) {
|
||||||
var resourceId = jqXHR ? jqXHR.getResponseHeader("ResourceId") : undefined;
|
var resourceId = jqXHR ? jqXHR.getResponseHeader("ResourceId") : undefined;
|
||||||
@ -301,7 +307,7 @@ $(function () {
|
|||||||
postUpdate: function(data, id) {
|
postUpdate: function(data, id) {
|
||||||
createLabelItem(data, id);
|
createLabelItem(data, id);
|
||||||
if (mapIds.length > 0) {
|
if (mapIds.length > 0) {
|
||||||
linkLabelToMindmap(mapIds, {id: id, title: data.title, color: data.color});
|
linkLabelToMindmap(mapIds, {id: id, title: data.title, color: data.color, icon: data.icon});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -548,7 +554,7 @@ function createLabelItem(data, id) {
|
|||||||
var labelItem = $("<li data-filter=\"" + data.title + "\">");
|
var labelItem = $("<li data-filter=\"" + data.title + "\">");
|
||||||
labelItem.append(
|
labelItem.append(
|
||||||
"<a href=\"#\"> " +
|
"<a href=\"#\"> " +
|
||||||
"<i class=\"glyphicon glyphicon-tag labelIcon\"></i>" +
|
"<i class=\"" + data.icon + " labelIcon\"></i>" +
|
||||||
"<div class='labelColor' style='background: " + data.color + "'></div>" +
|
"<div class='labelColor' style='background: " + data.color + "'></div>" +
|
||||||
"<div class='labelName labelNameList'>" + data.title + "</div>" +
|
"<div class='labelName labelNameList'>" + data.title + "</div>" +
|
||||||
"<button id='deleteLabelBtn' class='close closeLabel' labelid=\""+ labelId +"\">x</button>" +
|
"<button id='deleteLabelBtn' class='close closeLabel' labelid=\""+ labelId +"\">x</button>" +
|
||||||
|
Loading…
Reference in New Issue
Block a user