Bug 868: Remove AD-SAL components which were deprecated in Lithium
[controller.git] / opendaylight / adsal / web / root / src / main / resources / js / fuelux / util.js
diff --git a/opendaylight/adsal/web/root/src/main/resources/js/fuelux/util.js b/opendaylight/adsal/web/root/src/main/resources/js/fuelux/util.js
deleted file mode 100755 (executable)
index 469e9db..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Fuel UX Utilities
- * https://github.com/ExactTarget/fuelux
- *
- * Copyright (c) 2012 ExactTarget
- * Licensed under the MIT license.
- */
-
-define(['require','jquery'],function (require) {
-
-       var $ = require('jquery');
-
-       // custom case-insensitive match expression
-       function fuelTextExactCI(elem, text) {
-               return (elem.textContent || elem.innerText || $(elem).text() || '').toLowerCase() === (text || '').toLowerCase();
-       }
-
-       $.expr[':'].fuelTextExactCI = $.expr.createPseudo ?
-               $.expr.createPseudo(function (text) {
-                       return function (elem) {
-                               return fuelTextExactCI(elem, text);
-                       };
-               }) :
-               function (elem, i, match) {
-                       return fuelTextExactCI(elem, match[3]);
-               };
-
-});
\ No newline at end of file