Details and queue management
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
function initFileUpload(objectContext) {
|
||||
"use strict";
|
||||
|
||||
// enforce true attribute client support
|
||||
jQuery.validator.addMethod("enforcetrue", function (value, element, param) {
|
||||
return element.checked;
|
||||
});
|
||||
jQuery.validator.unobtrusive.adapters.addBool("enforcetrue");
|
||||
|
||||
// We use the upload handler integrated into Backload:
|
||||
// In this example we set an objectContect (id) in the url query (or as form parameter).
|
||||
// You can use a user id as objectContext give users only access to their own uploads.
|
||||
|
||||
@@ -1,5 +1,10 @@
|
||||
(function($) {
|
||||
|
||||
// disable anchors in menu links which are disabled
|
||||
$("li.disabled a").click(function () {
|
||||
return false;
|
||||
});
|
||||
|
||||
// Making elements equal height
|
||||
var equalheight = function(container){
|
||||
|
||||
|
||||
Reference in New Issue
Block a user