Customize bootstrap with SASS

Update jquery validate for IE
Simplify scripting
Update home page logo
This commit is contained in:
2016-12-13 09:40:40 -05:00
parent 0f9a66074d
commit cf21f17bc1
112 changed files with 15160 additions and 8033 deletions
+14 -13
View File
@@ -1,19 +1,20 @@
var getUrlParameter = function getUrlParameter(sParam) {
var sPageURL = decodeURIComponent(window.location.search.substring(1)),
sURLVariables = sPageURL.split('&'),
sParameterName,
i;
$(function () {
for (i = 0; i < sURLVariables.length; i++) {
sParameterName = sURLVariables[i].split('=');
var getUrlParameter = function (sParam) {
var sPageUrl = decodeURIComponent(window.location.search.substring(1)),
sUrlVariables = sPageUrl.split('&'),
sParameterName,
i;
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
for (i = 0; i < sUrlVariables.length; i++) {
sParameterName = sUrlVariables[i].split('=');
if (sParameterName[0] === sParam) {
return sParameterName[1] === undefined ? true : sParameterName[1];
}
}
}
};
};
$(function () {
var baseUrl = "/umbraco/surface/Chart/ChartCurve";
$('#CurveId')
.change(function () {
@@ -25,7 +26,7 @@ $(function () {
if (curveId === "@Html.Raw(selectText)") {
return;
}
var $spinner = $(this).after('<i class="fa fa-spinner fa-spin"></i>').next('i');
var $spinner = $chart.after('<span class="glyphicon glyphicon-refresh gly-spin" style="font-size: 3em"></span>').next('span');
var leafInputId = getUrlParameter("leafInputId");
var url = baseUrl + "?leafInputId=" + leafInputId + "&curveId=" + curveId;
+4 -7
View File
@@ -4,7 +4,7 @@
* intended to be used only for design-time IntelliSense. Please use the
* standard jQuery library for all production use.
*
* Comment version: 1.8
* Comment version: 1.11.1
*/
/*
@@ -15,12 +15,9 @@
* for informational purposes only and are not the license terms under
* which Microsoft distributed this file.
*
* jQuery validation plugin 1.8.0
*
* http://bassistance.de/jquery-plugins/jquery-plugin-validation/
* http://docs.jquery.com/Plugins/Validation
*
* Copyright (c) 2006 - 2011 Jörn Zaefferer
* jQuery Validation Plugin - v1.11.1 - 2/4/2013
* https://github.com/jzaefferer/jquery-validation
* Copyright (c) 2013 Jörn Zaefferer; Licensed MIT
*
*/
+489 -417
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long