From c2d06d83182ac2f63d355b5f90d7d11d7b2fc83a Mon Sep 17 00:00:00 2001 From: thednp Date: Tue, 15 Mar 2016 10:12:27 +0200 Subject: [PATCH] Delete kute-jquery.js --- kute-jquery.js | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 kute-jquery.js diff --git a/kute-jquery.js b/kute-jquery.js deleted file mode 100644 index 7dc0cbf..0000000 --- a/kute-jquery.js +++ /dev/null @@ -1,49 +0,0 @@ -/* KUTE.js - The Light Tweening Engine - * package jQuery Plugin - * by dnp_theme - * Licensed under MIT-License - */ - - (function(factory){ - // We need to require the root KUTE and jQuery. - if (typeof define === 'function' && define.amd) { - define(["./kute.js", "jquery"], function(KUTE, $){ - factory($, KUTE); - return KUTE; - }); - } else if(typeof module == "object" && typeof require == "function") { - // We assume, that require() is sync. - var KUTE = require("./kute.js"); - var $ = require("jquery"); - - // Export the modified one. Not really required, but convenient. - module.exports = factory($, KUTE); - } else if (typeof window.KUTE !== "undefined" && (typeof window.$ !== 'undefined' || typeof window.jQuery !== 'undefined' ) ) { - // jQuery always has two ways of existing... Find one, and pass. - var $ = window.jQuery || window.$, KUTE = window.KUTE; - $.fn.KUTE = factory($, KUTE); - } else { - throw new Error("jQuery plugin for KUTE.js depends on KUTE.js and jQuery. Read the docs for more info."); - } - })(function($, KUTE) { - 'use strict'; - var $K = function( method, start, end, ops ) { // method can be fromTo(), to(), stop(), start(), chain(), pause() - var tws = [], i, l = this.length; - - for (i=0;i