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
| <script> | |
| $(window).resize(function() { | |
| $(‘#dividhere').height($(window).height() - 86); | |
| }); | |
| $(window).trigger('resize'); | |
| </script> |
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
| <script type="text/javascript"> | |
| jQuery(document).ready(function(){ jQuery('.logo').hide().fadeIn(3000); }); | |
| </script> |
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
| /**************** Smooth Scroll: JNR edit *******************/ | |
| $(function() { | |
| $('a[href*=#]:not([href=#])').click(function() { | |
| if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) { | |
| var target = $(this.hash); | |
| target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | |
| if (target.length) { | |
| $('html,body').animate({ |
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
| css: span.sld { | |
| position:absolute; | |
| width:986px; | |
| height:457px; | |
| top:0; |
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
| <form id="contact" name="contact" method="post"> | |
| <fieldset> | |
| <label for="name" id="name">Name<span class="required">*</span></label> | |
| <input type="text" name="name" id="name" size="30" value="" required/> | |
| <label for="email" id="email">Email<span class="required">*</span></label> | |
| <input type="text" name="email" id="email" size="30" value="" required/> | |
| <label for="phone" id="phone">Phone</label> | |
| <input type="text" name="phone" id="phone" size="30" value="" /> |
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
| <div class="col-lg-12 col-md-12 col-sm-12" ng-controller="ContactController"> | |
| <div class="alert alert-danger" ng-show="error"> | |
| <button class="close" data-dismiss="alert">x</button> | |
| <strong>Error!</strong> An error occured while trying to send message. | |
| </div> | |
| <div class="alert alert-success" ng-show="success"> | |
| <button class="close" data-dismiss="alert">x</button> | |
| <strong>Success! </strong> Your message was successfully sent. | |
| </div> | |
| <form role="form" name="contactForm"> |
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
| jingli = playlist(mode='randomize',reload=1,reload_mode="rounds", "/home/baza/jingli/") | |
| baza = playlist(mode='randomize',reload=1,reload_mode="rounds", "/home/baza/baza/") | |
| baza_imported = playlist(mode='randomize',reload=1,reload_mode="rounds", "/srv/airtime/stor/imported/") | |
| default = random(weights = [5, 1, 2], [jingli,baza, baza_imported]) |
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
| $(".scroll").click(function(event){ | |
| event.preventDefault(); | |
| $('html,body').animate({scrollTop:$(this.hash).offset().top}, 500); | |
| }); |
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
| add_filter('woocommerce_get_catalog_ordering_args', 'am_woocommerce_catalog_orderby'); function am_woocommerce_catalog_orderby( $args ) { $args['meta_key'] = '_sku'; | |
| $args['orderby'] = 'meta_value'; $args['order'] = 'asc'; return $args; } |
OlderNewer