View atmc-demo-previewer.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- /* | |
/ | |
/ \_|\ / | |
/ / | |
/ A-Train Marketing / | |
/ / | |
ATDemo 0.2.3 / | |
*/ --> | |
<div class="atdemo-original"> |
View jQuery-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// test for jQuery | |
// | |
if ('undefined' == typeof window.jQuery) { | |
console.error('~jQuery is required') | |
} else { | |
(function($){ | |
$(document).ready( function(){ | |
// jQuery loaded |
View ATMC-custom-metabox.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
/ | |
/ ATMC Custom Metabox / | |
/ / | |
/ A-Train Marketing / | |
/ / | |
Version 0.1.5 / | |
*/ |
View WPPlusMinusAccordion.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.panel-heading').click(function(){ | |
$('#ew-accordian').find('a').each(function(){ | |
$(this).attr('data-before','+');; | |
}); | |
if( $(this).find('a').attr('aria-expanded') == 'true' ) { | |
$(this).find('a').attr('data-before','+'); | |
} else { | |
$(this).find('a').attr('data-before','-'); |
View WidowWedder.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
widowWedderLauncher(); | |
}); | |
$(window).resize(function() { | |
widowWedderLauncher(); | |
}); | |
function widowWedderLauncher() { | |
$('.no-widow, h1, h2, h3, a').each( function(){ | |
widowWedder( $(this) ); |
View ATDemo.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- /* | |
/ | |
/ \_|\ / | |
/ / | |
/ A-Train Marketing / | |
/ / | |
ATDemo 0.2.2 / | |
*/ --> | |
<div class="atdemo-original"> |
View antiWidowMaker.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('.no-widow, h1, h2, h3, a').each( function(){ | |
antiWidowMaker( $(this) ); | |
}); | |
}); | |
$(window).resize(function() { | |
$('.no-widow, h1, h2, h3, a').each( function(){ | |
antiWidowMaker( $(this) ); | |
}); | |
}); |
View defaultUScript.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== . | |
// @name XY0-defaultUserScript | |
// @namespace MESH.FYN.XY0.UScript | |
// @description F | |
// @include * | |
// @version 0.1 | |
// @grant none | |
// ==/UserScript== . | |
console.log(' \n' , |
View slideout-css-only
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
#slideout { | |
right: 0; | |
z-index:9001; | |
} | |
#slideout_inner { | |
right: -274px; | |
background-color:#f4f4f4; | |
width: 274px; | |
text-align:center; |
NewerOlder