2.3.2 added breadcrumb

This commit is contained in:
Trevor Squillario 2012-11-26 22:04:42 -05:00
parent 0b4581efba
commit d0990ba861
13 changed files with 152 additions and 46 deletions

View file

@ -9,7 +9,7 @@ var password;
var passwordenc;
var server;
var smwidth;
var currentVersion = '2.3.1';
var currentVersion = '2.3.2';
function getCookie(value) {
if ($.cookie(value)) {
@ -44,11 +44,12 @@ function setCookie(key, value) {
*/
}
// Set auth cookies if specified in URL on launch
// Get URL Querystring Parameters
var u = getParameterByName('u');
var p = getParameterByName('p');
var s = getParameterByName('s');
if (u && p && s) {
// Auto configuration from Querystring params
if (!getCookie('username')) {
setCookie('username', u);
username = u;