Add WebCms

This commit is contained in:
2016-11-07 12:56:17 -05:00
parent dfe92218f4
commit 15911f33c0
2750 changed files with 365672 additions and 133 deletions
@@ -0,0 +1,52 @@
/// <reference path="/umbraco_client/Application/NamespaceManager.js" />
Umbraco.Sys.registerNamespace("Umbraco.Controls");
(function($) {
Umbraco.Controls.UploadMediaImage = function(txtBoxTitleID, btnID, uploadFileID) {
return {
_txtBoxTitleID: txtBoxTitleID,
_btnID: btnID,
_uplaodFileID: uploadFileID,
validateImage: function() {
// Disable save button
var imageTypes = ",jpeg,jpg,gif,bmp,png,tiff,tif,";
var tb_title = document.getElementById(this._txtBoxTitleID);
var bt_submit = $("#" + this._btnID);
var tb_image = document.getElementById(this._uplaodFileID);
bt_submit.attr("disabled","disabled").css("color", "gray");
var imageName = tb_image.value;
if (imageName.length > 0) {
var extension = imageName.substring(imageName.lastIndexOf(".") + 1, imageName.length);
if (imageTypes.indexOf(',' + extension.toLowerCase() + ',') > -1) {
bt_submit.removeAttr("disabled").css("color", "#000");
if (tb_title.value == "") {
var curName = imageName.substring(imageName.lastIndexOf("\\") + 1, imageName.length).replace("." + extension, "");
var curNameLength = curName.length;
var friendlyName = "";
for (var i = 0; i < curNameLength; i++) {
currentChar = curName.substring(i, i + 1);
if (friendlyName.length == 0)
currentChar = currentChar.toUpperCase();
if (i < curNameLength - 1 && friendlyName != '' && curName.substring(i - 1, i) == ' ')
currentChar = currentChar.toUpperCase();
else if (currentChar != " " && i < curNameLength - 1 && friendlyName != ''
&& curName.substring(i-1, i).toUpperCase() != curName.substring(i-1, i)
&& currentChar.toUpperCase() == currentChar)
friendlyName += " ";
friendlyName += currentChar;
}
tb_title.value = friendlyName;
}
}
}
}
};
}
})(jQuery);