updated libs and js
This commit is contained in:
parent
a41335c5ba
commit
a414d1a17f
Binary file not shown.
Binary file not shown.
BIN
Lib/Portoa.dll
BIN
Lib/Portoa.dll
Binary file not shown.
@ -713,6 +713,12 @@
|
||||
</summary>
|
||||
<param name="indexableObject">The object that needs its index updated</param>
|
||||
</member>
|
||||
<member name="M:Portoa.Search.ISearchIndexBuilder`1.DeleteIndex(`0)">
|
||||
<summary>
|
||||
Deletes the index for the specified <paramref name="indexableObject"/>
|
||||
</summary>
|
||||
<param name="indexableObject">The object that needs its index deleted</param>
|
||||
</member>
|
||||
<member name="M:Portoa.Search.CompositeIndexBuilder.Add``1(Portoa.Search.ISearchIndexBuilder{``0})">
|
||||
<summary>
|
||||
Adds an index builder to the collection
|
||||
@ -755,6 +761,12 @@
|
||||
</summary>
|
||||
<param name="entity">The entity that needs its index updated</param>
|
||||
</member>
|
||||
<member name="M:Portoa.Search.ISearchIndexBuilder`2.DeleteIndex(`0)">
|
||||
<summary>
|
||||
Deletes the index for the specified <paramref name="entity"/>
|
||||
</summary>
|
||||
<param name="entity">The entity that needs its index deleted</param>
|
||||
</member>
|
||||
<member name="M:Portoa.Logging.LoggingExtensions.IsLoggable(System.Reflection.ICustomAttributeProvider)">
|
||||
<summary>
|
||||
Determines if this object should be logged
|
||||
|
@ -96,7 +96,7 @@ dd {
|
||||
body {
|
||||
background-color: #EEEEEE;
|
||||
color: #000000;
|
||||
font-family: Calibri, Corbel, Helvetica, Arial;
|
||||
font-family: Calibri, Corbel, Arial;
|
||||
font-size: 1em;
|
||||
height: 100%;
|
||||
}
|
||||
@ -511,7 +511,7 @@ a.external {
|
||||
.quote-links {
|
||||
float: right;
|
||||
text-align: right;
|
||||
width: 100px;
|
||||
width: 125px;
|
||||
}
|
||||
|
||||
.flag-dialog {
|
||||
|
File diff suppressed because one or more lines are too long
@ -428,13 +428,11 @@
|
||||
var $submit = $("<a/>").attr({ href: "#", title: "submit" }).addClass("submit-icon").click(submitCategory);
|
||||
var $cancel = $("<a/>").attr({ href: "#", title: "cancel" }).addClass("cancel-icon");
|
||||
var $input = $("<input/>").attr({ id: "new-category-name", type: "text" }).bind("keyup", function(e) {
|
||||
console.log(e.which);
|
||||
if (e.which === 13) {
|
||||
e.preventDefault(); //make sure the parent form doesn't get submitted
|
||||
submitCategory.call($(this).siblings(".submit-icon").get(0)); //make sure to invoke it with the correct context
|
||||
} else if (e.which === 27) {
|
||||
e.preventDefault();
|
||||
//$cancel.onclick.call($(this).siblings(".cancel-icon").get(0));
|
||||
$cancel.click();
|
||||
}
|
||||
});
|
||||
@ -457,6 +455,10 @@
|
||||
}
|
||||
|
||||
var $row = $table.find("tr:last");
|
||||
if ($row.length === 0) {
|
||||
$row = $("<tr/>");
|
||||
$table.append($row);
|
||||
}
|
||||
$cell = $("<td/>");
|
||||
if ($row.find("td").length === 5) {
|
||||
$row = $("<tr/>");
|
||||
|
File diff suppressed because one or more lines are too long
@ -135,7 +135,7 @@
|
||||
};
|
||||
|
||||
var setupFlagLink = function() {
|
||||
$("a.quote-flag-icon").click(function() {
|
||||
$(".quote-flag-link").click(function() {
|
||||
if ($(".flag-dialog").length > 0) {
|
||||
return false;
|
||||
}
|
||||
@ -205,6 +205,30 @@
|
||||
});
|
||||
};
|
||||
|
||||
var setupDeleteLink = function() {
|
||||
$(".delete-quote-link").click(function() {
|
||||
var $link = $(this);
|
||||
var $container = $link.parents(".quote-container");
|
||||
|
||||
$.ajax("/quote/delete", {
|
||||
type: "POST",
|
||||
data: { id: $container.find(".quote-id").val() },
|
||||
beforeSend: function() { $link.toggleClass("delete-icon loading-icon"); },
|
||||
success: function(data) {
|
||||
if (data.Error !== null) {
|
||||
window.alert(data.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
$container.remove();
|
||||
},
|
||||
complete: function() { $link.toggleClass("delete-icon loading-icon"); }
|
||||
});
|
||||
|
||||
return false;
|
||||
});
|
||||
};
|
||||
|
||||
var setupLogin = function() {
|
||||
var showLoginForm = function() {
|
||||
var $dialog = $("#login-dialog");
|
||||
@ -257,6 +281,7 @@
|
||||
$(document).ready(function() {
|
||||
$.vgquotes.preload([$.vgquotes.loadingGif]);
|
||||
setupFlagLink();
|
||||
setupDeleteLink();
|
||||
setupVoting();
|
||||
|
||||
$("body").ajaxError(function(e, xhr, options, error){
|
||||
|
Loading…
Reference in New Issue
Block a user