6
Dec
2017

Network Tab fast image save

06 Dec 2017

a. Right click on an entry in the network log. Then select Copy All as HAR

b. In console:

”`js x = [<>]; // paste here copied HAR

(function(logObj, mime) {
  var results = [];
  logObj[0].log.entries.forEach(function (entry) {
    if (mime && entry.response.content.mimeType !== mime) return;
    results.push(entry.request.url);
14
Mar
2017

Vue.js

14 Mar 2017

Example 1

”`html

        <li class="dropdown">

            <a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="true">
                <i class="icon-bell2"></i>
                <span class="visible-xs-inline-block position-right">Activity</span>
                <span v-if="notifications.length > 0" class="status-mark border-pink-300"></span>
            </a>