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
#!/usr/bin/env bash | |
mkdir $1 | |
cd $1 | |
git init | |
git remote add origin https://[email protected]/$2/$1.git | |
echo "Andrew Gray" >> contributors.txt | |
git add contributors.txt | |
git commit -m 'Initial commit with contributors' | |
git push -u origin master |
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
(function (angular) { | |
"use strict"; | |
function printDirective() { | |
var printSection = document.getElementById("printSection"); | |
function printElement(elem) { | |
// clones the element you want to print | |
var domClone = elem.cloneNode(true); | |
if (!printSection) { | |
printSection = document.createElement("div"); |
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
<li> | |
<a href="#">Product Suites</a> | |
<div> | |
<div class="preScrollable Homepage div-ss-background-img"> | |
<h2>Standard Edition Suite 4.0</h2> | |
All the Standard Edition products offered as a bundle<br/><br/> | |
<button type="button" class="bg-color-maroon" onclick="window.open('https://sites.fastspring.com/fullcirclesolutions/instant/standardsuite40')"> | |
<font color="white">Purchase</font> | |
</button><b>Enterprise Suite coming soon!</b> | |
<br/><br/> |