From f2f40d406a5df9cb5427d1cb46df2007cede78e9 Mon Sep 17 00:00:00 2001 From: Ben Finney Date: Sun, 3 Jul 2016 16:54:47 +1000 Subject: [PATCH] Declare package control stanzas. --- debian/control | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 debian/control diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..ac340e6 --- /dev/null +++ b/debian/control @@ -0,0 +1,34 @@ +Source: jquery-throttle-debounce +Priority: optional +Maintainer: Ben Finney +Section: web +Homepage: http://benalman.com/projects/jquery-throttle-debounce-plugin/ +Build-Depends: + debhelper (>= 9~) +Standards-Version: 3.9.8 +VCS-Git: https://notabug.org/bignose/debian_jquery-throttle-debounce.git +VCS-Browser: https://notabug.org/bignose/debian_jquery-throttle-debounce/ + +Package: libjs-jquery-throttle-debounce +Architecture: all +Depends: + ${misc:Depends} +Recommends: + javascript-common +Description: library of rate-limit wrappers for functions + jQuery throttle / debounce allows you to rate-limit your functions in + multiple useful ways: + . + * Passing a ‘delay’ and ‘callback’ to ‘$.throttle’ returns a new + function that will execute no more than once every ‘delay’ + milliseconds. + * Passing a ‘delay’ and ‘callback’ to ‘$.debounce’ returns a new + function that will execute only once, coalescing multiple + sequential calls into a single execution at either the very + beginning or end. + . + jQuery isn’t actually required for this library, because nothing + internal uses any jQuery methods or properties. jQuery is just used + as a namespace under which these methods can exist. + . + This package installs the runtime library. -- 2.11.4.GIT