This file contains hidden or 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
<!doctype html> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="jquery.gridster.css"> | |
<style type="text/css"> |
This file contains hidden or 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
<html> | |
<header> | |
<style type="text/css"> | |
/* ========================================================== | |
* SMW Loader | |
* =========================================================*/ | |
.loader{ | |
color: #555; |
This file contains hidden or 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
;############################### Window Settings ############################## | |
; Background color of window. | |
#Window:Color=Black | |
; Default font color. | |
#Window:FontColor=9B9B9B | |
; Font color when button is pressed. | |
#Window:ActiveFontColor=00C0FF | |
; Specify Start-up window position by Left/Right/Top/Bottom. (alone or in combination) |
This file contains hidden or 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
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> | |
<xsl:output omit-xml-declaration="yes" /> | |
<xsl:output method="text" /> | |
<xsl:output indent="yes" /> | |
<xsl:output media-type="text/plain" /> | |
<xsl:param name="directory"/> | |
<xsl:param name="label-composite">Composites</xsl:param> |
This file contains hidden or 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
simplx = { | |
_debugMode:false, | |
_namespaceSeparator:'.', | |
_extend:function(ns,component){ | |
var nsArray; | |
var targetLocation = this; // First point at the base namespace/Object | |
var currentNs = ''; | |
if(ns !== '' && component instanceof Object){ |
This file contains hidden or 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
SIMPLX UserManager version 0.0.0.0.0.0.0.1 | |
Helps you to get JSON encoded information from the MODx User related tables. | |
I use it to populate a TV dropdown with MODx users. | |
UPDATE 120123 13:17 | |
Parameters: |
This file contains hidden or 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
public class RestClient { | |
private ArrayList <NameValuePair> params; | |
private ArrayList <NameValuePair> headers; | |
private String url; | |
private int responseCode; | |
private String message; | |
This file contains hidden or 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
<li> | |
<b>[[[email protected]]]</b> | |
</br> | |
[[+DisclaimerText]] | |
</li> |
This file contains hidden or 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
Welcome to jquery.bondage! | |
This project wraps the jquery.datalink plugin which does a great job of linking a data set (json object) to a HTML form. | |
The datalink plug does not update the form for you which i felt was a bit annoying :/ Well, instead of doing a one of | |
for the project i was working on i decided to make a reusable plugin :) | |
jquery.bondage adds some features to jquery.datalink, | |
- Form rendering |
This file contains hidden or 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
(function ($){ | |
var check=false, isRelative=true; | |
$.elementFromPoint = function(x,y) | |
{ | |
if(!document.elementFromPoint) return null; | |
if(!check) | |
{ | |
var sl; |