Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
authorLukas Eipert <leipert@gitlab.com>2019-01-25 15:15:42 +0300
committerLukas Eipert <leipert@gitlab.com>2019-01-25 15:15:42 +0300
commit90f82ebbe71475c88f81bbd24f1525a20d05320a (patch)
tree8af7ab2e6eea9d7527173a7d8ea5835ce5c9c87a /vendor
parent15a7f3c6af5286dee5188af045d3e80f95323472 (diff)
Diffstat (limited to 'vendor')
-rw-r--r--vendor/assets/javascripts/jquery.atwho.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/assets/javascripts/jquery.atwho.js b/vendor/assets/javascripts/jquery.atwho.js
index e058e13303a..ffa9ba9315c 100644
--- a/vendor/assets/javascripts/jquery.atwho.js
+++ b/vendor/assets/javascripts/jquery.atwho.js
@@ -881,6 +881,7 @@ Model = (function() {
};
Model.prototype.load = function(data) {
+ console.warn('LOAD')
if (!(this.saved() || !data)) {
return this._load(data);
}
@@ -891,6 +892,7 @@ Model = (function() {
};
Model.prototype._load = function(data) {
+ console.warn('2')
if (typeof data === "string") {
return $.ajax(data, {
dataType: "json"
@@ -1047,12 +1049,14 @@ View = (function() {
};
View.prototype.show = function() {
+ console.warn('SHOW')
var rect;
if (this.stopShowing) {
this.stopShowing = false;
return;
}
if (!this.visible()) {
+ console.warn('showing')
this.$el.show();
this.$el.scrollTop(0);
this.context.trigger('shown');
@@ -1115,6 +1119,7 @@ var Api;
Api = {
load: function(at, data) {
var c;
+ console.warn('LOAD', at, this.controller(at))
if (c = this.controller(at)) {
return c.model.load(data);
}