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 ( ! class_exists( 'WP_Customize_Control' ) ) | |
return NULL; | |
/** | |
* Class to create a custom tags control | |
*/ | |
class Text_Editor_Custom_Control1 extends WP_Customize_Control | |
{ | |
/** | |
* Render the content on the theme customizer page | |
*/ |
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 | |
//support | |
add_theme_support( 'post-thumbnails' ); | |
function invio_scripts() { | |
wp_enqueue_style('style-css', get_stylesheet_uri() ); | |
wp_enqueue_style('style-ft', get_stylesheet_directory_uri().'/libs/font-awesome-4.7.0/css/font-awesome.css' ); | |
wp_enqueue_style('style-main', get_stylesheet_directory_uri().'/css/style.css'); | |
wp_enqueue_style('style-media', get_stylesheet_directory_uri().'/css/media.css' ); |
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
var wheel = Draggable.create('#nerdwheel-svg', { | |
type: "rotation", | |
bounds:{minRotation:0, maxRotation:360}, | |
throwProps: true, | |
edgeResistance: 1, | |
onDrag: nextHandler | |
// function() { | |
// calcPercent(this.rotation); |
NewerOlder