aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <redmatrix@redmatrix.me>2015-04-08 21:10:47 -0700
committerfriendica <redmatrix@redmatrix.me>2015-04-08 21:10:47 -0700
commit184f8d42eac7ee05828297f88cccac59f0cb5895 (patch)
treeec5365108d232f1ff975c3451eab76439d531d31
parent37afc8184751556107a23910be094c80990901dd (diff)
downloadvolse-hubzilla-184f8d42eac7ee05828297f88cccac59f0cb5895.tar.gz
volse-hubzilla-184f8d42eac7ee05828297f88cccac59f0cb5895.tar.bz2
volse-hubzilla-184f8d42eac7ee05828297f88cccac59f0cb5895.zip
jRange: width is innacurate depending on box model, padding and margins. Using css width instead.
-rw-r--r--doc/features.bb2
-rw-r--r--library/jRange/jquery.range.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/features.bb b/doc/features.bb
index a932c4e1c..d7b99d621 100644
--- a/doc/features.bb
+++ b/doc/features.bb
@@ -88,7 +88,7 @@ Posts and messages may be created with an expiration date, at which time they wi
In addition to addon "cross-post connectors" to a variety of alternate networks, there is native support for importation of content from RSS/Atom feeds and using this to create special channels. Also, an experimental but working implementation of the Diaspora protocol allows communication with people on the Friendica and Diaspora decentralised social networks. This is currently marked experimental because these networks do not have the same level of privacy and encryption features and abilities as Redmatrix and may present privacy risks.
-There is also experimental support for OpenID authentication which may be used in Access Control Lists. This is a work in progress.
+There is also experimental support for OpenID authentication which may be used in Access Control Lists. This is a work in progress. Your Redmatrix hub may be used as an OpenID provider to authenticate you to external services which use this technology.
Channels may have permissions to become "derivative channels" where two or more existing channels combine to create a new topical channel.
diff --git a/library/jRange/jquery.range.js b/library/jRange/jquery.range.js
index 3e7f99ed9..4a35a380f 100644
--- a/library/jRange/jquery.range.js
+++ b/library/jRange/jquery.range.js
@@ -71,7 +71,7 @@
console.log('jRange : no width found, returning');
return;
} else {
- this.domNode.width(this.options.width || this.inputNode.width());
+ this.domNode.css('width', this.options.width || this.inputNode.width());
this.inputNode.hide();
}