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
| examples: http://codepen.io/shshaw/full/gEiDt | |
| source & edit mode: http://codepen.io/shshaw/pen/gEiDt |
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
| https://github.com/cowboy/jquery-dotimeout |
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
| ICON = IMAGE | |
| ICON { | |
| file.import.field = extension | |
| file.import.wrap = typo3conf/ext/skin/template/extensions/in_documents/ico/|.gif | |
| params = class="icon" | |
| required = 1 | |
| } |
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($) { | |
| $.fn.slideshowTxtImg = function() { | |
| var $screen = $(this), | |
| $wrapper = $(this).find('.slideWrapper'), | |
| $slides = $(this).find('.slideWrapper .item'), | |
| slideWidth = parseFloat($screen.width()) *.47732, | |
| slideMargin = parseFloat($screen.width()) *.04537, | |
| wrapperWidth = (slideWidth + slideMargin) * $slides.length, | |
| autoTimer = setInterval(function(){}), |
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
| <?php | |
| if (!defined ('TYPO3_MODE')) die ('Access denied.'); | |
| t3lib_extMgm::allowTableOnStandardPages('tx_indocuments_category'); | |
| $TCA['tx_indocuments_category'] = array ( | |
| 'ctrl' => $TCA['tx_indocuments_category']['ctrl'], | |
| 'interface' => array ( | |
| 'showRecordFieldList' => 'sys_language_uid,l10n_parent,l10n_diffsource,hidden,starttime,endtime,title, parent_category' |
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
| https://github.com/timrwood/moment/ | |
| http://momentjs.com/ |
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
| https://github.com/madrobby/keymaster |
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
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
| <!-- force device to display the page without zooming out --> | |
| <meta name="viewport" content="initial-scale=1"> |
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
| $.fn.serializeObject = function() { | |
| var o = {}; | |
| var a = this.serializeArray(); | |
| $.each(a, function() { | |
| if (o[this.name] !== undefined) { | |
| if (!o[this.name].push) { | |
| o[this.name] = [o[this.name]]; | |
| } | |
| o[this.name].push(this.value || ''); | |
| } else { |
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
| ## projectName | |
| <VirtualHost *:80> | |
| ServerName projectName.local.plou | |
| CustomLog "/www/.logs/projectName.local.plou-access_log" combined | |
| ErrorLog "/www/.logs/projectName.local.plou-error_log" | |
| DocumentRoot "/www/projectName/" | |
| Header set Access-Control-Allow-Origin "*" | |
| Header always set Access-Control-Allow-Methods "POST, PUT, GET, DELETE, OPTIONS" | |
| Header always set Access-Control-Allow-Headers "Content-Type" | |
| </VirtualHost> |