Browse Source

smartphone-spoiler.js: don't use jQuery

pull/40/head
Michael Save 12 years ago
parent
commit
b3ae75ed14
  1. 21
      js/smartphone-spoiler.js

21
js/smartphone-spoiler.js

@ -10,19 +10,14 @@
*
*/
$(document).ready(function(){
/* This needs to be expanded upon: */
var is_mobile = navigator.userAgent.match(/iPhone|iPod|iPad|Android/i);
if(is_mobile) {
$('span.spoiler').each(function() {
$(this).click(function() {
if($(this).hasClass('show'))
$(this).css('color', 'black').removeClass('show');
else
$(this).css('color', 'white').addClass('show');
});
});
onready(function(){
if(navigator.userAgent.match(/iPhone|iPod|iPad|Android/i)) {
var spoilers = document.getElementsByClassName('spoiler');
for(var i = 0; i < spoilers.length; i++) {
spoilers[i].onmousedown = function() {
this.style.color = 'white';
};
}
}
});

Loading…
Cancel
Save