51 lines
1.5 KiB
JavaScript
51 lines
1.5 KiB
JavaScript
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3-or-Later
|
|
|
|
/* Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
* licensed under the Affero General Public License version 3 or later. See
|
|
* the COPYRIGHT file.
|
|
*/
|
|
/* Modified version of https://gitorious.org/statusnet/mainline/blobs/master/plugins/DirectionDetector/jquery.DirectionDetector.js */
|
|
(function() {
|
|
var DirectionDetector = function() {
|
|
var self = this;
|
|
this.binds = [];
|
|
this.cleaner = new RegExp("@[^ ]+|^RT[: ]{1}| RT | RT: |[♺♻:]+", "g");
|
|
|
|
this.subscribe("widget/ready", function() {
|
|
self.updateBinds();
|
|
|
|
self.globalSubscribe("stream/scrolled", function() {
|
|
self.updateBinds();
|
|
});
|
|
});
|
|
|
|
this.isRTL = app.helpers.txtDirection.isRTL;
|
|
|
|
this.updateBinds = function() {
|
|
$.each(self.binds, function(index, bind) {
|
|
bind.unbind("keyup", self.updateDirection);
|
|
});
|
|
|
|
self.binds = [];
|
|
|
|
$("textarea, input[type='text'], input[type='search']").each(self.bind);
|
|
};
|
|
|
|
this.bind = function() {
|
|
self.binds.push(
|
|
$(this).bind("keyup", self.updateDirection)
|
|
);
|
|
};
|
|
|
|
this.updateDirection = function() {
|
|
var textArea = $(this),
|
|
cleaned = textArea.val().replace(self.cleaner, "").replace(/^[ ]+/, "");
|
|
|
|
app.helpers.txtDirection.setCssFor(cleaned, textArea);
|
|
};
|
|
};
|
|
|
|
Diaspora.Widgets.DirectionDetector = DirectionDetector;
|
|
})();
|
|
// @license-end
|
|
|