util: Move wiggle parameters to a common place
Since the wiggle effect will be used by the redesigned prompt-dialogs and we always want to use the same parameters, move those as defaults for the wiggle function to the util.js file. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/942
This commit is contained in:

committed by
Florian Müllner

parent
fc36837606
commit
2b184a10d6
@ -11,6 +11,10 @@ const Params = imports.misc.params;
|
||||
|
||||
var SCROLL_TIME = 100;
|
||||
|
||||
const WIGGLE_OFFSET = 6;
|
||||
const WIGGLE_DURATION = 65;
|
||||
const N_WIGGLES = 3;
|
||||
|
||||
// http://daringfireball.net/2010/07/improved_regex_for_matching_urls
|
||||
const _balancedParens = '\\([^\\s()<>]+\\)';
|
||||
const _leadingJunk = '[\\s`(\\[{\'\\"<\u00AB\u201C\u2018]';
|
||||
@ -442,9 +446,9 @@ function ensureActorVisibleInScrollView(scrollView, actor) {
|
||||
|
||||
function wiggle(actor, params) {
|
||||
params = Params.parse(params, {
|
||||
offset: 0,
|
||||
duration: 0,
|
||||
wiggleCount: 0,
|
||||
offset: WIGGLE_OFFSET,
|
||||
duration: WIGGLE_DURATION,
|
||||
wiggleCount: N_WIGGLES,
|
||||
});
|
||||
actor.translation_x = 0;
|
||||
|
||||
|
Reference in New Issue
Block a user