Sha256: ba50ba46c6e7b13a216ad64cfcc7fae7ed722c38b58cefcba9655d91a5f9405e

Contents?: true

Size: 1.86 KB

Versions: 42

Compression:

Stored size: 1.86 KB

Contents

var port = 9055

function setActiveStyleSheet(title) {
  var i, a, main;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) {
      a.disabled = true;
      if(a.getAttribute("title") == title) a.disabled = false;
    }
  }
}

function getActiveStyleSheet() {
  var i, a;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title");
  }
  return null;
}

function getPreferredStyleSheet() {
  var i, a;
  for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
    if(a.getAttribute("rel").indexOf("style") != -1
       && a.getAttribute("rel").indexOf("alt") == -1
       && a.getAttribute("title")
       ) return a.getAttribute("title");
  }
  return null;
}

function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else expires = "";
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
  }
  return null;
}

window.onload = function(e) {
  var cookie = readCookie("chimpd_theme_" + port);
  var title = cookie ? cookie : getPreferredStyleSheet();
  setActiveStyleSheet(title);
}

window.onunload = function(e) {
  var title = getActiveStyleSheet();
  createCookie("chimpd_theme_" + port, title, 365);
}

var cookie = readCookie("chimpd_theme_" + port);
var title = cookie ? cookie : getPreferredStyleSheet();
setActiveStyleSheet(title);

Version data entries

42 entries across 42 versions & 1 rubygems

Version Path
right_chimp-2.4 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.3.2 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.3.1 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.3 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.2.2 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.2.1 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.2 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.28 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.27 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.26 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.25.2 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.25 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.24 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.22.2 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.22.1 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.22 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.21 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.19.1 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.19 lib/right_chimp/templates/styleswitcher.js
right_chimp-2.1.18 lib/right_chimp/templates/styleswitcher.js