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
| <snippet> | |
| <content><![CDATA[]]></content> | |
| <tabTrigger></tabTrigger> | |
| <scope></scope> | |
| <description></description> | |
| </snippet> |
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'; | |
| /* jasmine specs for controllers go here */ | |
| describe('PhoneCat controllers', function() { | |
| describe('PhoneListCtrl', function() { | |
| beforeEach(module('phonesCat.controllers')); |
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
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 BaseObject = { | |
| create: function create() { | |
| var instance = Object.create(this); | |
| instance._construct.apply(instance, arguments); | |
| return instance; | |
| }, | |
| extend: function extend(properties, propertyDescriptors) { | |
| propertyDescriptors = propertyDescriptors || {}; |