Skip to content

Instantly share code, notes, and snippets.

@Phoen1x84
Phoen1x84 / self-invoking-function.js
Last active February 27, 2016 21:59
Self invoking function - Revealing module pattern
// noConflict mode
jQuery.noConflict();
var app = app || {};
app.myFunction = (function ($, undefined) {
// do all the things
var init = function(){
if (!$('body').hasClass('page-editor')) { // custom class added to the body to check for page editor
console.log('Hi friends!');
@Phoen1x84
Phoen1x84 / Example_folder_structure.txt
Last active February 5, 2016 14:23
Sitecore Frontend Tips
/webApplication
/assets
/styles
/banner
/- _banner.less or _banner.scss
/- app.less or app.scss
/js
/banner
/- banner.js
/- app.js
@Phoen1x84
Phoen1x84 / 0_reuse_code.js
Created October 8, 2015 08:53
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@Phoen1x84
Phoen1x84 / Form label animation with no-js fallback.markdown
Last active August 29, 2015 14:26
Form label animation with no-js fallback

Form label animation with no-js fallback

Simply add a surrounding element with a class name of "input-wrap" then add a class to your input, textarea etc... of "input-wrap__field" and you should see some sweet animation :)

Built using .Less and Javascript

A Pen by Matthew Neil on CodePen.

License.