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

namespace.js.es6 « mixins « diff_notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d278678085b99a7b27f80a75a8ca4f75c161031a (plain)
1
2
3
4
5
6
7
8
9
((w) => {
  w.ButtonMixins = {
    computed: {
      namespace: function () {
        return `${this.namespacePath}/${this.projectPath}`;
      }
    }
  };
})(window);