Socket
Socket
Sign inDemoInstall

ng-browser-update

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ng-browser-update

AngularJS directive for Browser-Update.org (http://browser-update.org): out-dated browsers notifier


Version published
Weekly downloads
10K
increased by2.48%
Maintainers
1
Install size
70.3 kB
Created
Weekly downloads
 

Changelog

Source

1.1.0 (2016-03-05)

Bug Fixes
  • demo: Fixed several issues with the demo application + Improvements (68c38efc)
Features
  • demo: replace version in demo css & js assets by 'demo' to ease migrations (bdb8898b)
  • jquery: remove jQuery dependency (cc8c875c)
  • translate: add support for expressions in notification-text attribute to ease i18n (d7a68ca4)
Breaking Changes
  • isolate scope binding definition of attribute 'notification-text' has changed from two-way binding to one-way binding

    To migrate the code follow the example below:

    Before:

    (with hardcoded value)

    <browser-update
      notification-text="'This is my custom notification message'">
    </browser-update>
    

    (with scope value)

    <browser-update
      notification-text="valueFromScope">
    </browser-update>
    

    After:

    (with hardcoded value)

    <browser-update
      notification-text="This is my custom notification message">
    </browser-update>
    

    (with scope value)

      <browser-update
        notification-text="{{valueFromScope}}">
      </browser-update>
    

    This allows you to use, for example, angular-translate's translate filter, to easily translate the custom message that appears in the notification bar, as such:

    <browser-update
      notification-text="{{ 'CUSTOM_NOTIFICATION_MESSAGE_ID' | translate }}">
    </browser-update>
    

closes #1 (d7a68ca4)

<a name="1.0.1"></a>

Readme

Source

ng-browser-update Build StatusdevDependency Status

AngularJS directive for Browser-Update.org: out-dated browsers notifier.

Demo: http://tinesoft.github.io/ng-browser-update

Installation

Using bower:

bower install ng-browser-update

Using npm:

npm install ng-browser-update

How to use it

You should already angular script referenced. If not, add it:

<script type="text/javascript" src="angular.min.js"></script>

Then add the library:

<script type="text/javascript" src="ng-browser-update.min.js"></script>

Next, inject ngBrowserUpdate in your application module:

angular.module('myApp', ['ngBrowserUpdate']);

and then just add an browser-update tag in your main file (index.html for example):

<browser-update></browser-update>

Implemented features so far:

  • versions : browser versions to notify
  • language : set a language for the message, e.g. "en", overrides the default detection
  • reminder : atfer how many hours should the message reappear: 0 = show all the time
  • new-window: open link in new window/tab
  • always-show-bar: always show the bar (for testing)
  • notification-text : custom notification html text (takes precedence over the 'language' option)
  • on-notification-bar-shown: callback function after the bar has appeared
  • on-notificationBar-clicked: callback function if bar was clicked

Example with some above features:

<browser-update  
 versions="{i:8,f:8,o:9.63,s:2,c:8}" reminder="1"
 always-show-bar="false" new-window="false" 
 notification-text="This is my custom notification message">
</browser-update>

Easy i18n support for custom notification message

Version v1.1 of ng-browser-update makes it possible to use angular's expressions as value for the notification-text attribute. This allows you to use, for example, angular-translate's translate filter, to easily translate the custom message that appears in the notification bar.

Here is an example:

<browser-update  
 versions="{i:8,f:8,o:9.63,s:2,c:8}" reminder="1"
 always-show-bar="false" new-window="false" 
 notification-text="{{ 'CUSTOM_NOTIFICATION_MESSAGE_ID' | translate }}">
</browser-update>

where CUSTOM_NOTIFICATION_MESSAGE_ID is the key of the message.

More information on how to use angular-translate's translate filter can be found here.

Features to be implemented:

  • onNotificationClosed : callback when user closes the notification bar

Build

You can run the tests by cloning the repo and then (inside the project folder) running

npm install
bower install
grunt watch

assuming you already have grunt installed, otherwise you also need to do:

npm install -g grunt-cli

License

Copyright (c) 2015 Tine Kondo. Licensed under the MIT License (MIT)

Thanks To

Credits and thanks go to the team behind Browser-Update.org for this awesome initiative!

Keywords

FAQs

Last updated on 04 Aug 2016

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc