create tag item on left list

This commit is contained in:
Ezequiel Bergamaschi
2014-01-25 23:25:17 -03:00
committed by Ezequiel Bergamaschi
parent 3f2c687643
commit 49d9820a44
2 changed files with 12 additions and 7 deletions

View File

@@ -258,8 +258,14 @@ $(function () {
$("#newFolderBtn").click(
function () {
$("#new-folder-dialog-modal").dialogForm({
//redirect:"c/maps/{header.resourceId}/edit",
//url:"c/restful/maps"
url:"c/restful/labels",
postUpdate: function (data) {
$("#foldersContainer").find("ul").append(
$("<li data-filter=\"" + data.title + "\">").append(
"<a href=\"#\"> <i class=\"icon-tag\"></i>" + data.title + "</a>"
)
)
}
});
}
);