summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 17:16:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-15 17:16:36 +0200
commit4772ad4101c4aa48d8758483f934d7e3b955487d (patch)
tree05a0076ceac96e4d1c755a620f8676ac42de19c2 /js
parentfab848d1246005c56b71999a54442281e14f7d08 (diff)
travis fixes
Diffstat (limited to 'js')
-rw-r--r--js/config/app.js2
-rw-r--r--js/config/config.js2
-rw-r--r--js/config/protractor.js2
-rw-r--r--js/config/run.js2
-rw-r--r--js/service/loading.js2
-rw-r--r--js/service/setup.js2
-rw-r--r--js/tests/unit/controller/AllItemsControllerSpec.js2
-rw-r--r--js/tests/unit/service/LoadingSpec.js2
8 files changed, 8 insertions, 8 deletions
diff --git a/js/config/app.js b/js/config/app.js
index 271de3fd0..947a68a2e 100644
--- a/js/config/app.js
+++ b/js/config/app.js
@@ -5,6 +5,6 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
var app = angular.module('News', ['ngRoute', 'ngSanitize', 'ngAnimate']); \ No newline at end of file
diff --git a/js/config/config.js b/js/config/config.js
index 88c965856..776f4ee92 100644
--- a/js/config/config.js
+++ b/js/config/config.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
app.config(function ($routeProvider, $provide) {
'use strict';
diff --git a/js/config/protractor.js b/js/config/protractor.js
index 364ff7bfe..6193d5c99 100644
--- a/js/config/protractor.js
+++ b/js/config/protractor.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
var baseUrl = 'http://localhost';
diff --git a/js/config/run.js b/js/config/run.js
index 2bf9de7d6..00e71a7b0 100644
--- a/js/config/run.js
+++ b/js/config/run.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
app.run(function ($rootScope, $location, Loading, Setup) {
'use strict';
diff --git a/js/service/loading.js b/js/service/loading.js
index e15d0fd7a..e6fcb73d1 100644
--- a/js/service/loading.js
+++ b/js/service/loading.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
app.service('Loading', function () {
'use strict';
diff --git a/js/service/setup.js b/js/service/setup.js
index 07f4c605f..dcb289643 100644
--- a/js/service/setup.js
+++ b/js/service/setup.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
app.service('Setup', function () {
'use strict';
diff --git a/js/tests/unit/controller/AllItemsControllerSpec.js b/js/tests/unit/controller/AllItemsControllerSpec.js
index 63cf55536..74292e628 100644
--- a/js/tests/unit/controller/AllItemsControllerSpec.js
+++ b/js/tests/unit/controller/AllItemsControllerSpec.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
describe('AllItemsController', function () {
'use strict';
diff --git a/js/tests/unit/service/LoadingSpec.js b/js/tests/unit/service/LoadingSpec.js
index 0067b6015..f8146b87f 100644
--- a/js/tests/unit/service/LoadingSpec.js
+++ b/js/tests/unit/service/LoadingSpec.js
@@ -5,7 +5,7 @@
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Bernhard Posselt 2012, 2014
+ * @copyright Bernhard Posselt 2014
*/
describe('Loading', function () {
'use strict';
'#n472'>472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677