This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="pagination pagination-centered"> | |
| <% | |
| var startPagination = (curPage - 5 > 0) ? curPage - 5 : 1; | |
| var endPagination = (curPage + 5 < (nbMails / 20)) ? curPage + 5 : nbMails / 20; | |
| %> | |
| <ul> | |
| <li <% if (curPage == 1){ %>class="disabled"<% } %>><a <% if (curPage != 1){%>href="/admin/mail/<%= curPage - 1 %>"<% } %>>«</a></li> | |
| <% if (startPagination != 1) { %><li class="disabled"><a>...</a></li><% } %> | |
| <% for (var i = startPagination; i <= endPagination ; i++){ %> | |
| <li <% if (i == curPage){ %>class="active"<% } %>><a href="/admin/mail/<%= i %>"><%= i %></a></li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| browser.actions().mouseMove(element(by.css('#myElement'))).perform(); | |
| browser.actions().click(protractor.Button.RIGHT).perform(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .run(['$rootScope', '$state', '$stateParams', 'Config', 'Notification', function ($rootScope, $state, $stateParams, Config, Notification) { | |
| $rootScope.lkConfig = Config.get; | |
| $rootScope.$on('$stateChangeStart', function (event, toState, toParams, fromState, fromParams) { | |
| $rootScope.$stateDestination = toState; | |
| $rootScope.$state = $state; | |
| $rootScope.$stateParams = $stateParams; | |
| }); | |
| $rootScope.$on('$stateChangeError', function (event, toState, toParams, fromState, fromParams, error){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * My class | |
| */ | |
| class myClass { | |
| constructor(a) { | |
| this.a = a; | |
| /** | |
| * @namespace myClass.b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <gpx schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.garmin.com/xmlschemas/GpxExtensions/v3 http://www.garmin.com/xmlschemas/GpxExtensionsv3.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v1 http://www.garmin.com/xmlschemas/TrackPointExtensionv1.xsd http://www.topografix.com/GPX/gpx_style/0/2 http://www.topografix.com/GPX/gpx_style/0/2/gpx_style.xsd" version="1.1" creator="https://gpx.studio" xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd http://www.garmin.com/xmlschemas/GpxExtensions/v3 http://www.garmin.com/xmlschemas/GpxExtensionsv3.xsd http://www.garmin.com/xmlschemas/TrackPointExtension/v1 http://www.garmin.com/xmlschemas/TrackPointExtensionv1.xsd http://www.garmin.com/xmlschemas/PowerExtension/v1 http://www.garmin.com/xmlschemas/PowerExtensionv1.xsd http://ww |
OlderNewer