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
| <small>Click the button: </small> | |
| <button class='trigger'>Tiny Button</button> |
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
| RUN THIS COMMAND: | |
| sudo nano /etc/apache2/httpd.conf | |
| EDIT THESE LINES IN THE /etc/apache2/httpd.conf FILE: | |
| - Uncomment: LoadModule php5_module libexec/apache2/libphp5.so | |
| - Uncomment: LoadModule vhost_alias_module libexec/apache2/mod_vhost_alias.so | |
| - Uncomment: LoadModule userdir_module libexec/apache2/mod_userdir.so | |
| - Uncomment: LoadModule alias_module libexec/apache2/mod_alias.so | |
| - Uncomment: LoadModule rewrite_module libexec/apache2/mod_rewrite.so | |
| - In DocumentRoot Directory block change 'Options FollowSymLinks Multiviews' TO 'Options FollowSymLinks Multiviews Indexes' |
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
| if (!window.getComputedStyle) { | |
| /** | |
| * @param {(Element|null)} e | |
| * @param {(null|string)=} t | |
| * @return {(CSSStyleDeclaration|null)} | |
| */ | |
| window.getComputedStyle = function(e, t) { | |
| return this.el = e, this.getPropertyValue = function(t) { | |
| /** @type {RegExp} */ | |
| var n = /(\-([a-z]){1})/g; |
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
| /***************************************** | |
| * Events Max v10.0 | |
| * Enhanced cross-browser event handling | |
| * | |
| * This work is licensed under a Creative Commons Attribution 3.0 Unported License | |
| * http://creativecommons.org/licenses/by/3.0/ | |
| * | |
| * Author: Andy Harrison, http://dragonzreef.com/ | |
| * Date: 28 June 2012 | |
| *****************************************/ |