Skip to content

Commit

Permalink
missed the checkin of the derived assets on PR #14
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Collins committed Aug 24, 2014
1 parent 4b5a22c commit fa24f8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions dist/mentio.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ angular.module('mentio', [])
ngModel: '='
},
controller: function($scope, $timeout, $attrs) {

$scope.query = function (triggerChar, triggerText) {
var remoteScope = $scope.triggerCharMap[triggerChar];
remoteScope.showMenu();
Expand Down Expand Up @@ -177,6 +177,7 @@ angular.module('mentio', [])
var activeMenuScope = $scope.getActiveMenuScope();
if (activeMenuScope) {
if (event.which === 9) {
event.preventDefault();
activeMenuScope.selectActive();
}

Expand Down Expand Up @@ -372,7 +373,7 @@ angular.module('mentio', [])
if (mentioAttr !== undefined) {
// send own scope to mentio directive so that the menu
// becomes attached
$rootScope.$broadcast('menuCreated',
$rootScope.$broadcast('menuCreated',
{
targetElement : scope.forElem,
scope : scope
Expand Down
Loading

0 comments on commit fa24f8d

Please sign in to comment.