'use strict'; define(['app'], function (app) { app.directive('summerNoteAutoFocus', ["$log", function ($log) { return { restrict: 'A', link: function ($scope, $element, $attr) { $(document).ready(function () { if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) { $(".note-editable").input(function () { $(".modal").animate({ scrollTop: 400 }, 100); }) } }); } }; }]) });