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
| /usr/share/zoneinfo/Hongkong | |
| > Wed Jan 01 2014 00:00:00 GMT+0800 (HKT) | |
| > Mon Sep 01 2014 00:00:00 GMT+0800 (HKT) | |
| /usr/share/zoneinfo/Pacific/Easter | |
| > Wed Jan 01 2014 00:00:00 GMT-0500 (EASST) | |
| > Mon Sep 01 2014 00:00:00 GMT-0600 (EAST) | |
| /usr/share/zoneinfo/Pacific/Norfolk | |
| > Wed Jan 01 2014 00:00:00 GMT+1130 (NFT) |
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
| $fading-time: 250ms | |
| $fading-shown-opacity: 100 | |
| $fading-hidden-opacity: 0 | |
| // $className | |
| body.fade | |
| opacity: $fading-hidden-opacity | |
| transition-duration: $fading-time | |
| transition-property: opacity |
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
| var t = 2000; | |
| var o1 = $('#id-1'); | |
| var o2 = $('#id-2'); | |
| o2.fadeOut(10); | |
| setTimeOut(function() { | |
| o1.fadeOut(350); | |
| o2.fadeIn(250); | |
| }, t); |
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
| <script type="text/ng-template" id="main.html"> | |
| <div class="row"> | |
| <div class="col-sm-3"> | |
| <div class="banner-info"> | |
| <div class="banner-info-header"> | |
| <h5 class="title">Overall Ranking</h5> | |
| <div class="rg-counter-big" rg-count="overall.rank"></div> | |
| </div> | |
| <div class="banner-info-box"> | |
| <p>Overall ranking assessed compared to other healthcare organizations across VHA and UHC membership.</p> |
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
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/jquery.min.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/angular.min.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/angular-route.min.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/angular-sanitize.min.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/countUp.min.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/highcharts.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/highcharts-more.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/vendor/exporting.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/scripts/app.js | |
| #IMAGE_PREFIX#novation/js/dm_dashboard/scripts/controllers/main.js |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Foo</title> | |
| <style> | |
| .wrapper { | |
| position: fixed; | |
| transform: translate(-50%, -50%); |
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
| .ng-elements-picker .title-section { | |
| border: 1px solid #ededed; | |
| border-top-width: 0; | |
| background-color: white; | |
| text-align: left; | |
| padding: 10px; | |
| font-weight: bold; | |
| color: #61cfb9; | |
| } |
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
| /*! normalize.css v2.1.3 | MIT License | git.io/normalize */ | |
| @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/kevinlopez\/Development\/Kipo_Business_Web_Application\/app\/lib\/sass-bootstrap\/lib\/_normalize\.scss}line{font-family:\0000322}} | |
| article, | |
| aside, | |
| details, | |
| figcaption, | |
| figure, | |
| footer, | |
| header, | |
| hgroup, |
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
| 'use strict'; | |
| angular.module('kipoApp') | |
| .service('Auth', [ | |
| 'Restangular', | |
| '$cookieStore', | |
| 'ReportsSession', | |
| function ( | |
| Restangular, | |
| $cookieStore, |
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
| var l = window.document.createElement('a'); | |
| l.href = "http://www.google.com"; | |
| l.target = "_blank"; | |
| window.jQuery(l).click(); |