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
/*! | |
* By Eharry.me (https://gist.github.com/Ema4rl/b8ef90be99205ddada5ef2cd6e632ebe) | |
*/ | |
! function ($) { | |
"use strict"; | |
var slide = $("[data-slides]"), | |
count = 0, | |
slides = slide.data("slides"), | |
len = slides.length, | |
n = function () { |
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 | |
defined('BASEPATH') OR exit('No direct script access allowed'); | |
/** | |
* File Uploading Class Extension | |
* | |
* @package CodeIgniter | |
* @subpackage Libraries | |
* @category Uploads | |
* @author Harrison Emmanuel (Eharry.me) |
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
(function(addon) { | |
var component; | |
if (window.UIkit) { | |
component = addon(UIkit); | |
} | |
if (typeof define == "function" && define.amd) { | |
define("uikit-aspect-ratio", ["uikit"], function(){ | |
return component || addon(UIkit); |
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
require APPPATH.'libraries/REST_Controller.php'; | |
class API_Controller extends REST_Controller | |
{ | |
/** | |
* Parse the DELETE request arguments [HACK] | |
* | |
* @access protected |