Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: appengine/auth_service/static/js/config_page.js

Issue 1860863002: Update copyright notice from Swarming to LUCI; add AUTHORS and CONTRIBUTORS. (Closed) Base URL: git@github.com:luci/luci-py.git@master
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Swarming Authors. All rights reserved. 1 // Copyright 2014 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed by the Apache v2.0 license that can be 2 // Use of this source code is governed by the Apache v2.0 license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var config_page = (function() { 5 var config_page = (function() {
6 'use strict'; 6 'use strict';
7 7
8 var exports = {}; 8 var exports = {};
9 9
10 10
11 // Fetches the importer config from the server. 11 // Fetches the importer config from the server.
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 $('#import-config textarea[name="config"]').val(response.data.config); 48 $('#import-config textarea[name="config"]').val(response.data.config);
49 common.presentContent(); 49 common.presentContent();
50 }, function(error) { 50 }, function(error) {
51 common.presentError(error.text); 51 common.presentError(error.text);
52 }); 52 });
53 }; 53 };
54 54
55 55
56 return exports; 56 return exports;
57 }()); 57 }());
OLDNEW
« no previous file with comments | « appengine/auth_service/replication_smoke_test.py ('k') | appengine/auth_service/static/js/services.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698