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
{extends file='frontend/detail/data.tpl'} | |
{block name='frontend_detail_data_tax'} | |
<p class="product--tax" data-content="" data-modalbox="true" data-width="800" data-height="800" data-targetSelector="a" data-mode="ajax"> | |
{s name="DetailDataPriceInfo"}{/s} | |
</p> | |
{/block} |
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
<p class="modal--size-table" data-content="" data-modalbox="true" data-targetSelector="a" data-width="400" data-height="400" data-mode="ajax"> | |
<a class="block btn is--secondary is--center is--large" href="{url controller=custom sCustom=1}">Button Text</a> | |
</p> |
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
{extends file="parent:frontend/detail/tabs.tpl"} | |
{* New tab *} | |
{block name="frontend_detail_tabs_description" append} | |
{if $sArticle.attr4} | |
<a class="tab--link" title="{s namespace="frontend/detail" name='NewTabsDescription'}{/s}" href="#">{s namespace="frontend/detail" name='NewTabsDescription'}{/s}</a> | |
{/if} | |
{/block} | |
{* New Tab container *} |
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
<div class="buttons--off-canvas"> | |
<a class="close--off-canvas" href="#"> | |
<i class="icon--arrow-left"></i> | |
Zurück | |
</a> | |
</div> | |
<div class="content--description"> | |
<div class="product--description"> | |
{$sArticle.attr4} | |
</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
<?php | |
/** | |
* An helper file for Laravel 5, to provide autocomplete information to your IDE | |
* Generated for Laravel 5.0.16 on 2015-03-16. | |
* | |
* @author Barry vd. Heuvel <[email protected]> | |
* @see https://github.com/barryvdh/laravel-ide-helper | |
*/ | |
namespace { |
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
.btn-animated:before { | |
content: attr(data-pages-button-text); | |
} |
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
// <b id="show-time">5</b> | |
<script type="text/javascript"> | |
var settimmer = 0; | |
$(function(){ | |
window.setInterval(function() { | |
var timeCounter = $("b[id=show-time]").html(); | |
var updateTime = eval(timeCounter)- eval(1); | |
$("b[id=show-time]").html(updateTime); | |
if(updateTime == 0){ |
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
// @foreach(array_chunk($posts->all(), 3) as $postSet) | |
@foreach(array_chunk($posts, 3) as $postSet) | |
<div class="row"> <!-- this div will surround every three posts --> | |
@foreach($postSet as $post) | |
<h3>{{ $post['title'] }}</h3> | |
@endforeach | |
</div> | |
@endforeach |
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
jQuery( document ).ready( function( $ ) { | |
console.log("start"); | |
$( '#form-add-setting' ).on( 'submit', function() { | |
//..... | |
//show some spinner etc to indicate operation in progress | |
//..... | |
console.log("Submitting"); | |
$.post( | |
$( this ).prop( 'action' ), |
NewerOlder