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

blob_edit_bundle.js « blob_edit « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b801c10f1688da9bf6659677dab8419e701e1e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-disable */
/*= require_tree . */

(function() {
  $(function() {
    var url = $(".js-edit-blob-form").data("relative-url-root");
    url += $(".js-edit-blob-form").data("assets-prefix");

    var blob = new EditBlob(url, $('.js-edit-blob-form').data('blob-language'));
    new NewCommitForm($('.js-edit-blob-form'));
  });

}).call(this);