Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ### HTML
- <!DOCTYPE html>
- <html ng-app="plunker">
- <head>
- <meta charset="utf-8" />
- <script src="https://code.angularjs.org/1.4.4/angular.js"></script>
- <script>document.write('<base href="' + document.location + '" />');</script>
- <link rel="stylesheet" href="style.css" />
- <script src="app.js"></script>
- <title>{{ title }} dummy</title>
- </head>
- <body data-ng-controller="SimpleController">
- <h1>{{ title }}</h1>
- <ul > 2015-08
- <li data-ng-repeat="link in links">
- <a href="{{ link.url }}" target="_blank">{{ link.desc }}</a>
- </li>
- <br />
- <button ng-click="openAll()">open all</button>
- </ul>
- </body>
- </html>
- ### js
- angular.module('plunker', [])
- .controller('SimpleController', function SimpleController($scope,$window) {
- $scope.title = 'Published Photo\'s';
- $scope.links = [
- { desc: 'Album', url: 'https://plus.google.com/collection/MuwPX' },
- { desc: 'Heron Sunbathing', url: 'https://plus.google.com/+CecilWesterhof/posts/bHvSzBGobEj' },
- { desc: 'Heron Fishing', url: 'https://plus.google.com/+CecilWesterhof/posts/TY3asc5oCnB' },
- { desc: 'Water Lily', url: 'https://plus.google.com/+CecilWesterhof/posts/AtTwhL8SdnH' },
- { desc: 'Tree at Pond', url: 'https://plus.google.com/+CecilWesterhof/posts/TyiZbUWdnrm' },
- { desc: 'Fish', url: 'https://plus.google.com/+CecilWesterhof/posts/MoQ7vXs8HqP' },
- { desc: 'Fountain', url: 'https://plus.google.com/+CecilWesterhof/posts/BDYkPKSMUwZ' },
- { desc: 'Digitalis', url: 'https://plus.google.com/+CecilWesterhof/posts/ed3ZGNzb8kM' },
- { desc: 'Sunset', url: 'https://plus.google.com/+CecilWesterhof/posts/DPbHHSFXBY4' },
- { desc: 'Digitalis 2', url: 'https://plus.google.com/+CecilWesterhof/posts/ZZtSUwNb6RC' },
- { desc: 'Water Lilies', url: 'https://plus.google.com/+CecilWesterhof/posts/LY62DqLEJhG' },
- { desc: 'Flower', url: 'https://plus.google.com/+CecilWesterhof/posts/XFKyTcoakcy' },
- { desc: 'Waterfalls', url: 'https://plus.google.com/+CecilWesterhof/posts/bfg5irDAn2T' },
- { desc: 'Frogs', url: 'https://plus.google.com/+CecilWesterhof/posts/jKr5B6EQyo1' },
- { desc: 'Flowers', url: 'https://plus.google.com/+CecilWesterhof/posts/iPQbBrTbcnm' },
- { desc: 'Sheep', url: 'https://plus.google.com/+CecilWesterhof/posts/3a2mBo7om4H' },
- { desc: 'Beetle', url: 'https://plus.google.com/+CecilWesterhof/posts/KnNtis2Gqxf' },
- { desc: 'Dove', url: 'https://plus.google.com/+CecilWesterhof/posts/XA5RcC2Cxbv' },
- { desc: 'City Walk', url: 'https://plus.google.com/+CecilWesterhof/posts/R9me9AKQC6n' },
- { desc: 'Boar', url: 'https://plus.google.com/+CecilWesterhof/posts/9bfpBiQPYen' },
- { desc: 'Bird', url: 'https://plus.google.com/+CecilWesterhof/posts/X6gFE3oxXLY' },
- { desc: 'Goose', url: 'https://plus.google.com/+CecilWesterhof/posts/H4w6JvnQkcU' },
- ];
- $scope.openAll = function(){
- $scope.links.forEach(function(link){
- console.log(link)
- $window.open(link.url,"_blank")
- })
- }
- })
Advertisement
Add Comment
Please, Sign In to add comment